mastodon client for golang
 
 
Go to file
Yasuhiro Matsumoto caf87d1d37 add LICENSE 2017-04-14 19:22:24 +09:00
cmd/mstdn add test 2017-04-14 19:16:18 +09:00
.travis.yml add .travis.yml 2017-04-14 17:14:55 +09:00
LICENSE add LICENSE 2017-04-14 19:22:24 +09:00
README.md fix badge 2017-04-14 17:50:12 +09:00
mastodon.go set urn:ietf:wg:oauth:2.0:oob if RedirectURIs is not set 2017-04-14 18:19:12 +09:00
mastodon_test.go go vet 2017-04-14 19:20:23 +09:00

README.md

go-mastodon

Build Status Coverage Status GoDoc Go Report Card

Usage

c := mastodon.NewClient(&mastodon.Config{
	Server:       "https://mstdn.jp",
	ClientID:     "client-id",
	ClientSecret: "client-secret",
})
err := c.Authenticate("your-username", "your-password")
if err != nil {
	log.Fatal(err)
}
timeline, err := c.GetTimeline("/api/v1/timelines/home")
if err != nil {
	log.Fatal(err)
}

Installation

$ go get github.com/mattn/go-mastodon

License

MIT

Author

Yasuhiro Matsumoto (a.k.a. mattn)