2020-01-01 22:37:59 +01:00
|
|
|
---
|
|
|
|
title: Token
|
2020-01-12 14:11:56 +01:00
|
|
|
description: Represents an OAuth token used for authenticating with the API and performing actions.
|
2020-01-01 22:37:59 +01:00
|
|
|
menu:
|
|
|
|
docs:
|
|
|
|
parent: entities
|
|
|
|
---
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
{
|
|
|
|
"access_token": "ZA-Yj3aBD8U8Cm7lKUp-lm9O9BmDgdhHzDeqsY8tlL0",
|
|
|
|
"token_type": "Bearer",
|
|
|
|
"scope": "read write follow push",
|
|
|
|
"created_at": 1573979017
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Attributes
|
|
|
|
|
2020-01-12 14:11:56 +01:00
|
|
|
### `access_token` {#access_token}
|
2020-01-01 22:37:59 +01:00
|
|
|
|
2020-01-12 14:11:56 +01:00
|
|
|
**Description:** An OAuth token to be used for authorization.\
|
|
|
|
**Type:** String\
|
2020-01-01 22:37:59 +01:00
|
|
|
**Version history:** Added in 0.1.0
|
|
|
|
|
2020-01-12 14:11:56 +01:00
|
|
|
### `token_type` {#token_type}
|
2020-01-01 22:37:59 +01:00
|
|
|
|
2020-01-12 14:11:56 +01:00
|
|
|
**Description:** The OAuth token type. Mastodon uses `Bearer` tokens.\
|
|
|
|
**Type:** String\
|
2020-01-01 22:37:59 +01:00
|
|
|
**Version history:** Added in 0.1.0
|
|
|
|
|
2020-01-12 14:11:56 +01:00
|
|
|
### `scope` {#scope}
|
2020-01-01 22:37:59 +01:00
|
|
|
|
2020-01-12 14:11:56 +01:00
|
|
|
**Description:** The OAuth scopes granted by this token, space-separated.\
|
|
|
|
**Type:** String\
|
2020-01-01 22:37:59 +01:00
|
|
|
**Version history:** Added in 0.1.0
|
|
|
|
|
2020-01-12 14:11:56 +01:00
|
|
|
### `created_at` {#created_at}
|
2020-01-01 22:37:59 +01:00
|
|
|
|
2020-01-12 14:11:56 +01:00
|
|
|
**Description:** When the token was generated.\
|
|
|
|
**Type:** Number \(UNIX Timestamp\)\
|
2020-01-01 22:37:59 +01:00
|
|
|
**Version history:** Added in 0.1.0
|
|
|
|
|
|
|
|
## See also
|
|
|
|
|
|
|
|
* [Example authorization code flow](../client/token.md#example-authorization-code-flow)
|
|
|
|
* [OAuth Scopes](../api/oauth-scopes.md)
|
|
|
|
* [POST /oauth/token](../methods/apps/oauth.md#obtain-a-token)
|
|
|
|
|
|
|
|
{{< page-ref page="methods/apps/oauth.md" >}}
|
|
|
|
|
|
|
|
|
|
|
|
|