Retrieves current authorization details for a valid OAuth2 bearer token. Includes OAuth2 metadata and user details when identify is present.
curl --request GET \
--url https://api.fluxer.app/v1/oauth2/@me \
--header 'Authorization: Bearer <token>'{
"application": {
"id": "<string>",
"name": "<string>",
"icon": "<string>",
"description": "<string>",
"bot_public": true,
"bot_require_code_grant": true,
"flags": 1073741823
},
"scopes": [
"<string>"
],
"expires": "<string>"
}OAuth2 access token: Authorization: Bearer <token>.
Success
curl --request GET \
--url https://api.fluxer.app/v1/oauth2/@me \
--header 'Authorization: Bearer <token>'{
"application": {
"id": "<string>",
"name": "<string>",
"icon": "<string>",
"description": "<string>",
"bot_public": true,
"bot_require_code_grant": true,
"flags": 1073741823
},
"scopes": [
"<string>"
],
"expires": "<string>"
}