Retrieves public information about an OAuth2 application without authentication. Allows clients to discover application metadata before initiating authorization.
curl --request GET \
--url https://api.fluxer.app/v1/oauth2/applications/{id}/public{
"id": "<string>",
"name": "<string>",
"icon": "<string>",
"description": "<string>",
"redirect_uris": [
"<string>"
],
"scopes": [
"<string>"
],
"bot_public": true,
"bot": {
"id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"bio": "<string>",
"flags": 1073741823,
"avatar": "<string>",
"banner": "<string>",
"token": "<string>",
"mfa_enabled": true,
"authenticator_types": [
0
]
}
}The id
Success
The unique identifier of the application
The name of the application
The icon hash of the application
The description of the application
The registered redirect URIs for OAuth2
20The available OAuth2 scopes
50Whether the bot can be invited by anyone
The bot user associated with the application
Show child attributes
curl --request GET \
--url https://api.fluxer.app/v1/oauth2/applications/{id}/public{
"id": "<string>",
"name": "<string>",
"icon": "<string>",
"description": "<string>",
"redirect_uris": [
"<string>"
],
"scopes": [
"<string>"
],
"bot_public": true,
"bot": {
"id": "<string>",
"username": "<string>",
"discriminator": "<string>",
"bio": "<string>",
"flags": 1073741823,
"avatar": "<string>",
"banner": "<string>",
"token": "<string>",
"mfa_enabled": true,
"authenticator_types": [
0
]
}
}