X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2FAPI-Mastodon.md;h=d9e6f22b6633cb5f9c97dde61d7e5e44ec8e71dd;hb=e6cd5a4d663c74213a572a5528c32f721b677c9e;hp=d885e6ab3c7e7cd655de593e13a7e0785249e2a0;hpb=d0b20fb499798f22404b203a72bc24fa24897a44;p=friendica.git diff --git a/doc/API-Mastodon.md b/doc/API-Mastodon.md index d885e6ab3c..d9e6f22b66 100644 --- a/doc/API-Mastodon.md +++ b/doc/API-Mastodon.md @@ -11,14 +11,29 @@ Authentication is the same as described in [Using the APIs](help/api#Authenticat ## Entities -These endpoints use the [Mastodon API entities](https://docs.joinmastodon.org/api/entities/). +These endpoints use the [Mastodon API entities](https://docs.joinmastodon.org/entities/). ## Implemented endpoints -- [GET /api/v1/follow_requests](https://docs.joinmastodon.org/api/rest/follow-requests/#get-api-v1-follow-requests) +- [`GET /api/v1/custom_emojis`](https://docs.joinmastodon.org/methods/instance/custom_emojis/) + - Doesn't return unicode emojis since they aren't using an image URL + + +- [`GET /api/v1/follow_requests`](https://docs.joinmastodon.org/methods/accounts/follow_requests#pending-follows) + - Returned IDs are specific to follow requests +- [`POST /api/v1/follow_requests/:id/authorize`](https://docs.joinmastodon.org/methods/accounts/follow_requests#accept-follow) + - `:id` is a follow request ID, not a regular account id +- [`POST /api/v1/follow_requests/:id/reject`](https://docs.joinmastodon.org/methods/accounts/follow_requests#reject-follow) + - `:id` is a follow request ID, not a regular account id +- `POST /api/v1/follow_requests/:id/ignore` + - Friendica-specific, hides the follow request from the list and prevents the remote contact from retrying. + - `:id` is a follow request ID, not a regular account id + - Returns a [Relationship](https://docs.joinmastodon.org/entities/relationship) object. -## Non-implemented endpoints -- [POST /api/v1/follow_requests/:id/authorize](https://docs.joinmastodon.org/api/rest/follow-requests/#post-api-v1-follow-requests-id-authorize) -- [POST /api/v1/follow_requests/:id/reject](https://docs.joinmastodon.org/api/rest/follow-requests/#post-api-v1-follow-requests-id-reject) +- [`GET /api/v1/instance`](https://docs.joinmastodon.org/methods/instance#fetch-instance) +- [`GET /api/v1/instance/peers`](https://docs.joinmastodon.org/methods/instance#list-of-connected-domains) + +## Non-implemented endpoints +- [`GET /api/v1/instance/activity`](https://docs.joinmastodon.org/methods/instance#weekly-activity)