localhost_frssoft baf388cb42 separate misskey struct; small handler for renote | 1 vuosi sitten | |
---|---|---|
.. | ||
LICENSE | 5 vuotta sitten | |
README.md | 5 vuotta sitten | |
accounts.go | 1 vuosi sitten | |
apps.go | 1 vuosi sitten | |
filter.go | 3 vuotta sitten | |
helper.go | 3 vuotta sitten | |
http.go | 1 vuosi sitten | |
instance.go | 1 vuosi sitten | |
lists.go | 2 vuotta sitten | |
mastodon.go | 1 vuosi sitten | |
misskey.go | 1 vuosi sitten | |
notification.go | 3 vuotta sitten | |
poll.go | 4 vuotta sitten | |
report.go | 5 vuotta sitten | |
status.go | 1 vuosi sitten | |
streaming.go | 5 vuotta sitten | |
unixtime.go | 5 vuotta sitten |
package main
import (
"context"
"fmt"
"log"
"github.com/mattn/go-mastodon"
)
func main() {
app, err := mastodon.RegisterApp(context.Background(), &mastodon.AppConfig{
Server: "https://mstdn.jp",
ClientName: "client-name",
Scopes: "read write follow",
Website: "https://github.com/mattn/go-mastodon",
})
if err != nil {
log.Fatal(err)
}
fmt.Printf("client-id : %s\n", app.ClientID)
fmt.Printf("client-secret: %s\n", app.ClientSecret)
}
package main
import (
"context"
"fmt"
"log"
"github.com/mattn/go-mastodon"
)
func main() {
c := mastodon.NewClient(&mastodon.Config{
Server: "https://mstdn.jp",
ClientID: "client-id",
ClientSecret: "client-secret",
})
err := c.Authenticate(context.Background(), "your-email", "your-password")
if err != nil {
log.Fatal(err)
}
timeline, err := c.GetTimelineHome(context.Background(), nil)
if err != nil {
log.Fatal(err)
}
for i := len(timeline) - 1; i >= 0; i-- {
fmt.Println(timeline[i])
}
}
$ go get github.com/mattn/go-mastodon
MIT
Yasuhiro Matsumoto (a.k.a. mattn)