Page Menu
Home
Musing Studio
Search
Configure Global Search
Log In
Files
F13778811
README.md
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
898 B
Subscribers
None
README.md
View Options
#
go
-
snapas
[](https://pkg.go.dev/github.com/snapas/go-snapas)
Official
Snap
.
as
Go
client
library
.
##
Installation
```
bash
go
get
github
.
com
/
snapas
/
go
-
snapas
```
##
Documentation
See
all
functionality
and
usages
in
the
[
API
documentation
](
https
:
//developers.snap.as/docs/api/).
###
Example
usage
```
go
import
(
"github.com/snapas/go-snapas"
"github.com/writeas/go-writeas/v2"
"log"
)
func
main
()
{
// Authenticate with Write.as
wc
:=
writeas
.
NewClient
()
u
,
err
:=
wc
.
LogIn
(
"demo"
,
"demo"
)
if
err
!=
nil
{
log
.
Fatal
(
err
)
}
// Upload to Snap.as
sc
:=
snapas
.
NewClient
(
u
.
AccessToken
)
p
,
err
:=
sc
.
UploadPhoto
(&
snapas
.
PhotoParams
{
FileName
:
"image.jpg"
,
})
if
err
!=
nil
{
wc
.
LogOut
()
log
.
Fatal
(
err
)
}
// Output final domain
log
.
Println
(
p
.
URL
)
// Clean up
wc
.
LogOut
()
}
```
##
License
MIT
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Thu, Jan 29, 6:35 PM (14 h, 17 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3607148
Attached To
rSAGO go-snapas
Event Timeline
Log In to Comment