go-mastodon/README.md

144 lines
3.7 KiB
Markdown
Raw Normal View History

2017-04-13 09:48:45 +02:00
# go-mastodon
2017-04-14 21:15:25 +02:00
[![Build Status](https://travis-ci.org/mattn/go-mastodon.svg?branch=master)](https://travis-ci.org/mattn/go-mastodon)
2019-06-21 19:12:04 +02:00
[![CodeCov](https://codecov.io/gh/mattn/go-mastodon/branch/master/graph/badge.svg)](https://codecov.io/gh/mattn/go-mastodon)
2017-04-14 10:15:42 +02:00
[![GoDoc](https://godoc.org/github.com/mattn/go-mastodon?status.svg)](http://godoc.org/github.com/mattn/go-mastodon)
[![Go Report Card](https://goreportcard.com/badge/github.com/mattn/go-mastodon)](https://goreportcard.com/report/github.com/mattn/go-mastodon)
2017-04-13 09:48:45 +02:00
## Usage
2017-04-27 05:03:11 +02:00
### Application
2017-04-13 09:48:45 +02:00
```go
2017-04-26 18:46:18 +02:00
package main
import (
"context"
"fmt"
2017-04-27 05:03:11 +02:00
"log"
2017-04-26 18:46:18 +02:00
"github.com/mattn/go-mastodon"
2017-04-27 05:03:11 +02:00
)
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)
}
```
### Client
```go
package main
import (
"context"
"fmt"
2017-04-26 18:46:18 +02:00
"log"
2017-04-27 05:03:11 +02:00
"github.com/mattn/go-mastodon"
2017-04-26 18:46:18 +02:00
)
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)
2017-04-26 18:46:18 +02:00
if err != nil {
log.Fatal(err)
}
for i := len(timeline) - 1; i >= 0; i-- {
fmt.Println(timeline[i])
}
2017-04-13 09:48:45 +02:00
}
```
2017-04-27 05:03:11 +02:00
2017-04-14 17:37:27 +02:00
## Status of implementations
* [x] GET /api/v1/accounts/:id
* [x] GET /api/v1/accounts/verify_credentials
2017-04-16 14:01:46 +02:00
* [x] PATCH /api/v1/accounts/update_credentials
2017-04-14 17:37:27 +02:00
* [x] GET /api/v1/accounts/:id/followers
* [x] GET /api/v1/accounts/:id/following
2017-04-16 14:42:54 +02:00
* [x] GET /api/v1/accounts/:id/statuses
2017-04-14 17:37:27 +02:00
* [x] POST /api/v1/accounts/:id/follow
* [x] POST /api/v1/accounts/:id/unfollow
* [x] GET /api/v1/accounts/:id/block
* [x] GET /api/v1/accounts/:id/unblock
* [x] GET /api/v1/accounts/:id/mute
* [x] GET /api/v1/accounts/:id/unmute
2019-04-27 03:27:43 +02:00
* [x] GET /api/v1/accounts/:id/lists
2017-04-14 17:37:27 +02:00
* [x] GET /api/v1/accounts/relationships
* [x] GET /api/v1/accounts/search
* [x] POST /api/v1/apps
2017-04-15 09:28:18 +02:00
* [x] GET /api/v1/blocks
* [x] GET /api/v1/favourites
* [x] GET /api/v1/follow_requests
2017-04-16 18:37:29 +02:00
* [x] POST /api/v1/follow_requests/:id/authorize
* [x] POST /api/v1/follow_requests/:id/reject
2017-04-14 17:37:27 +02:00
* [x] POST /api/v1/follows
* [x] GET /api/v1/instance
* [x] GET /api/v1/instance/activity
* [x] GET /api/v1/instance/peers
2019-04-27 03:27:43 +02:00
* [x] GET /api/v1/lists
* [x] GET /api/v1/lists/:id/accounts
* [x] GET /api/v1/lists/:id
* [x] POST /api/v1/lists
* [x] PUT /api/v1/lists/:id
* [x] DELETE /api/v1/lists/:id
* [x] POST /api/v1/lists/:id/accounts
* [x] DELETE /api/v1/lists/:id/accounts
2017-04-17 06:56:35 +02:00
* [x] POST /api/v1/media
2017-04-17 06:00:53 +02:00
* [x] GET /api/v1/mutes
2017-04-14 17:37:27 +02:00
* [x] GET /api/v1/notifications
* [x] GET /api/v1/notifications/:id
2019-05-16 01:59:33 +02:00
* [x] POST /api/v1/notifications/dismiss
2017-04-14 17:37:27 +02:00
* [x] POST /api/v1/notifications/clear
2017-04-16 21:51:16 +02:00
* [x] GET /api/v1/reports
* [x] POST /api/v1/reports
2017-04-16 14:47:15 +02:00
* [x] GET /api/v1/search
2017-04-14 17:37:27 +02:00
* [x] GET /api/v1/statuses/:id
* [x] GET /api/v1/statuses/:id/context
* [x] GET /api/v1/statuses/:id/card
2017-04-16 14:01:46 +02:00
* [x] GET /api/v1/statuses/:id/reblogged_by
* [x] GET /api/v1/statuses/:id/favourited_by
* [x] POST /api/v1/statuses
2017-04-15 14:07:11 +02:00
* [x] DELETE /api/v1/statuses/:id
2017-04-16 14:01:46 +02:00
* [x] POST /api/v1/statuses/:id/reblog
* [x] POST /api/v1/statuses/:id/unreblog
* [x] POST /api/v1/statuses/:id/favourite
* [x] POST /api/v1/statuses/:id/unfavourite
2017-04-14 17:37:27 +02:00
* [x] GET /api/v1/timelines/home
2017-04-15 09:28:18 +02:00
* [x] GET /api/v1/timelines/public
2017-04-15 14:02:55 +02:00
* [x] GET /api/v1/timelines/tag/:hashtag
2019-04-27 03:56:47 +02:00
* [x] GET /api/v1/timelines/list/:id
2017-04-13 09:48:45 +02:00
## Installation
```
$ go get github.com/mattn/go-mastodon
```
## License
MIT
## Author
Yasuhiro Matsumoto (a.k.a. mattn)