Scopes
This is a simple list of ALL the scopes we accept for tokens and applications. When a scope is applied to a token, it has permission to obtain information or take a specific action.
| Name | Scope | Description |
|---|---|---|
| User Get | user.get | Get the user's data like Username, Display_name and bio. |
| User Email | user.email | Allows you to get the user's email within the user.get. |
| User Edit | user.edit | Allows you to edit the users data like Username and Display_name. |
| User Follow | user.follow | Allows you to follow another user. |
| User Get Followers | user.followers.get | Allows you to get the user's followers list. |
| User Get Following | user.following.get | Allows you to get the user's following list. |
| Post Get | post.get | Get the user's post data like content and likes. |
| Post Send | post.send | Allows you to send a post on the user's behalf. |
| Post Edit | post.edit | Allows you to edit a user's posts. |
| Post Delete | post.delete | Allows you to delete a user's posts. |
| Post Like | post.like | Allows you to like a post. |
| Reply Get | reply.get | Get the user's reply data like content, likes and parent post. |
| Reply Send | reply.send | Allows you to send a reply on the user's behalf. |
| Reply Edit | reply.edit | Allows you to edit a user's replies. |
| Reply Delete | reply.delete | Allows you to delete a user's replies. |
| Reply Like | reply.like | Allows you to like a reply. |
| Feed Get | feed.get | Allows you to get a curated list of posts designed for the user. |
| Feed Public | feed.public | Allows you to get a list of random posts. |
Notes:
- You must have the
user.getscope to use any of the other user scopes, this also goes for the post and reply scopes