mastodon client for golang
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
grumbulon 5d0a35b8ac OOPS 5 months ago
.github/workflows pleroma auth flow and fix go workspace 5 months ago
cmd/mstdn pleroma auth flow and fix go workspace 5 months ago
testdata add missing file 6 years ago
.gitignore add .gitignore 6 years ago
LICENSE add LICENSE 6 years ago
README.md readme 5 months ago
accounts.go minor spelling fixes 7 months ago
accounts_test.go Remove unused variables 6 months ago
apps.go OOPS 5 months ago
apps_test.go remove redundent return statements 6 months ago
compat.go Add support for /api/v1/push/subscription 4 years ago
example_test.go change module path and bump Go version 5 months ago
filters.go add support for filters 1 year ago
filters_test.go add support for filters 1 year ago
go.mod switch repo imports and switch from nested modules to workspace 5 months ago
go.sum switch repo imports and switch from nested modules to workspace 5 months ago
go.test.sh Temporary disable test with -race 4 years ago
helper.go Fix to parse API error 6 years ago
helper_test.go remove usage of deprecated package 5 months ago
instance.go minor spelling fixes 7 months ago
instance_test.go Fix contact_account 4 years ago
lists.go Add list API support. 4 years ago
lists_test.go Remove unused variables 6 months ago
mastodon.go add support for language 6 months ago
mastodon_test.go add source, history for statuses and option to update a status 6 months ago
notification.go minor spelling fixes 7 months ago
notification_test.go remove redundent return statements 6 months ago
polls.go minor spelling fixes 7 months ago
polls_test.go Add support to vote on polls. Add more fields to Poll 2 years ago
report.go minor spelling fixes 7 months ago
report_test.go Remove unused variables 6 months ago
status.go add comment for GetStatusSource 6 months ago
status_test.go remove usage of deprecated package 5 months ago
streaming.go minor spelling fixes 7 months ago
streaming_test.go fix go vet warnings: call to (*T).Fatalf from a non-test goroutine 6 months ago
streaming_ws.go Make Client.Config public 4 years ago
streaming_ws_test.go fix go vet warnings: call to (*T).Fatalf from a non-test goroutine 6 months ago
types.go pleroma auth flow and fix go workspace 5 months ago
unixtime.go Add GetInstanceActivity and GetInstancePeers 5 years ago

README.md

go-mastodon

Usage

Application

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)
}

Client

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])
	}
}

Status of implementations

  • GET /api/v1/accounts/:id
  • GET /api/v1/accounts/verify_credentials
  • PATCH /api/v1/accounts/update_credentials
  • GET /api/v1/accounts/:id/followers
  • GET /api/v1/accounts/:id/following
  • GET /api/v1/accounts/:id/statuses
  • POST /api/v1/accounts/:id/follow
  • POST /api/v1/accounts/:id/unfollow
  • GET /api/v1/accounts/:id/block
  • GET /api/v1/accounts/:id/unblock
  • GET /api/v1/accounts/:id/mute
  • GET /api/v1/accounts/:id/unmute
  • GET /api/v1/accounts/:id/lists
  • GET /api/v1/accounts/relationships
  • GET /api/v1/accounts/search
  • GET /api/v1/apps/verify_credentials
  • GET /api/v1/bookmarks
  • POST /api/v1/apps
  • GET /api/v1/blocks
  • GET /api/v1/conversations
  • DELETE /api/v1/conversations/:id
  • POST /api/v1/conversations/:id/read
  • GET /api/v1/favourites
  • GET /api/v1/filters
  • POST /api/v1/filters
  • GET /api/v1/filters/:id
  • PUT /api/v1/filters/:id
  • DELETE /api/v1/filters/:id
  • GET /api/v1/follow_requests
  • POST /api/v1/follow_requests/:id/authorize
  • POST /api/v1/follow_requests/:id/reject
  • POST /api/v1/follows
  • GET /api/v1/instance
  • GET /api/v1/instance/activity
  • GET /api/v1/instance/peers
  • GET /api/v1/lists
  • GET /api/v1/lists/:id/accounts
  • GET /api/v1/lists/:id
  • POST /api/v1/lists
  • PUT /api/v1/lists/:id
  • DELETE /api/v1/lists/:id
  • POST /api/v1/lists/:id/accounts
  • DELETE /api/v1/lists/:id/accounts
  • POST /api/v1/media
  • GET /api/v1/mutes
  • GET /api/v1/notifications
  • GET /api/v1/notifications/:id
  • POST /api/v1/notifications/:id/dismiss
  • POST /api/v1/notifications/clear
  • POST /api/v1/push/subscription
  • GET /api/v1/push/subscription
  • PUT /api/v1/push/subscription
  • DELETE /api/v1/push/subscription
  • GET /api/v1/reports
  • POST /api/v1/reports
  • GET /api/v2/search
  • GET /api/v1/statuses/:id
  • GET /api/v1/statuses/:id/context
  • GET /api/v1/statuses/:id/card
  • GET /api/v1/statuses/:id/history
  • GET /api/v1/statuses/:id/reblogged_by
  • GET /api/v1/statuses/:id/source
  • GET /api/v1/statuses/:id/favourited_by
  • POST /api/v1/statuses
  • PUT /api/v1/statuses/:id
  • DELETE /api/v1/statuses/:id
  • POST /api/v1/statuses/:id/reblog
  • POST /api/v1/statuses/:id/unreblog
  • POST /api/v1/statuses/:id/favourite
  • POST /api/v1/statuses/:id/unfavourite
  • POST /api/v1/statuses/:id/bookmark
  • POST /api/v1/statuses/:id/unbookmark
  • GET /api/v1/timelines/home
  • GET /api/v1/timelines/public
  • GET /api/v1/timelines/tag/:hashtag
  • GET /api/v1/timelines/list/:id
  • GET /api/v1/streaming/user
  • GET /api/v1/streaming/public
  • GET /api/v1/streaming/hashtag?tag=:hashtag
  • GET /api/v1/streaming/hashtag/local?tag=:hashtag
  • GET /api/v1/streaming/list?list=:list_id
  • GET /api/v1/streaming/direct

Installation

go install github.com/mattn/go-mastodon@latest

License

MIT

Author

Yasuhiro Matsumoto (a.k.a. mattn)