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
|
2022-11-20 07:34:38 +01:00
|
|
|
aliases: [
|
|
|
|
"/entities/token",
|
|
|
|
"/entities/Token",
|
|
|
|
"/api/entities/token",
|
|
|
|
"/api/entities/Token",
|
|
|
|
]
|
2020-01-01 22:37:59 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
2022-11-20 07:34:38 +01:00
|
|
|
```json
|
2020-01-01 22:37:59 +01:00
|
|
|
{
|
|
|
|
"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\
|
2022-11-20 07:34:38 +01:00
|
|
|
**Version history:**\
|
|
|
|
0.1.0 - added
|
2020-01-01 22:37:59 +01:00
|
|
|
|
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\
|
2022-11-20 07:34:38 +01:00
|
|
|
**Version history:**\
|
|
|
|
0.1.0 - added
|
2020-01-01 22:37:59 +01:00
|
|
|
|
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\
|
2022-11-20 07:34:38 +01:00
|
|
|
**Version history:**\
|
|
|
|
0.1.0 - added
|
2020-01-01 22:37:59 +01:00
|
|
|
|
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.\
|
2022-11-20 07:34:38 +01:00
|
|
|
**Type:** Number (UNIX Timestamp)\
|
|
|
|
**Version history:**\
|
|
|
|
0.1.0 - added
|
2020-01-01 22:37:59 +01:00
|
|
|
|
|
|
|
## See also
|
|
|
|
|
2022-11-20 07:34:38 +01:00
|
|
|
{{< page-relref ref="oauth-scopes" caption="OAuth Scopes" >}}
|
2020-01-01 22:37:59 +01:00
|
|
|
|
2022-11-20 07:34:38 +01:00
|
|
|
{{< page-relref ref="methods/oauth" caption="oauth methods" >}}
|
2020-01-01 22:37:59 +01:00
|
|
|
|
2022-11-20 07:34:38 +01:00
|
|
|
{{< page-ref page="client/token" >}}
|
2020-01-01 22:37:59 +01:00
|
|
|
|
2022-11-20 07:34:38 +01:00
|
|
|
{{< page-ref page="client/authorized" >}}
|