From 1d8134ccb45049a13802ea60a8e2760f9e36d728 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Sat, 15 Apr 2017 00:37:27 +0900 Subject: [PATCH] add status of implementations --- README.md | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/README.md b/README.md index 0dd0e60..b959ce3 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,51 @@ if err != nil { log.Fatal(err) } ``` +## Status of implementations + +* [x] GET /api/v1/accounts/:id +* [x] GET /api/v1/accounts/verify_credentials +* [x] GET /api/v1/accounts/:id/followers +* [x] GET /api/v1/accounts/:id/following +* [ ] GET /api/v1/accounts/:id/statuses +* [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 +* [x] GET /api/v1/accounts/relationships +* [x] GET /api/v1/accounts/search +* [x] POST /api/v1/apps +* [ ] GET /api/v1/blocks +* [ ] GET /api/v1/favourites +* [ ] GET /api/v1/follow_requests +* [ ] POST /api/v1/follow_requests/authorize +* [ ] POST /api/v1/follow_requests/reject +* [x] POST /api/v1/follows +* [x] GET /api/v1/instance +* [ ] POST /api/v1/media +* [ ] GET /api/v1/mutes +* [x] GET /api/v1/notifications +* [x] GET /api/v1/notifications/:id +* [x] POST /api/v1/notifications/clear +* [ ] GET /api/v1/reports +* [ ] POST /api/v1/reports +* [ ] GET /api/v1/search +* [x] GET /api/v1/statuses/:id +* [x] GET /api/v1/statuses/:id/context +* [x] GET /api/v1/statuses/:id/card +* [ ] GET /api/v1/statuses/:id/reblogged_by +* [ ] GET /api/v1/statuses/:id/favourited_by +* [ ] POST /api/v1/statuses +* [ ] 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 +* [x] GET /api/v1/timelines/home +* [ ] GET /api/v1/timelines/public +* [ ] GET /api/v1/timelines/tag/:hashtag ## Installation