Lists all third-party applications the user has authorized. Shows granted scopes and authorization metadata. Allows user to review and manage delegated access.
curl --request GET \
--url https://api.fluxer.app/v1/oauth2/@me/authorizations \
--header 'Authorization: <api-key>'[
{
"application": {
"id": "<string>",
"name": "<string>",
"icon": "<string>",
"description": "<string>",
"bot_public": true
},
"scopes": [
"<string>"
],
"authorized_at": "<string>"
}
]Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
curl --request GET \
--url https://api.fluxer.app/v1/oauth2/@me/authorizations \
--header 'Authorization: <api-key>'[
{
"application": {
"id": "<string>",
"name": "<string>",
"icon": "<string>",
"description": "<string>",
"bot_public": true
},
"scopes": [
"<string>"
],
"authorized_at": "<string>"
}
]