21 lines
598 B
Text
21 lines
598 B
Text
|
GET https://discord.com/api/users/@me
|
||
|
Authorization: Bearer {{$dotenv DISCORD_ACCESS_TOKEN}}
|
||
|
|
||
|
###
|
||
|
|
||
|
GET https://discord.com/api/users/@me/guilds
|
||
|
Authorization: Bearer {{$dotenv DISCORD_ACCESS_TOKEN}}
|
||
|
|
||
|
###
|
||
|
|
||
|
GET https://discord.com/api/users/@me/guilds/{{$dotenv DISCORD_GUILD_ID}}/member
|
||
|
Authorization: Bearer {{$dotenv DISCORD_ACCESS_TOKEN}}
|
||
|
|
||
|
###
|
||
|
|
||
|
POST https://discord.com/api/oauth2/token/revoke
|
||
|
Content-Type: application/x-www-form-urlencoded
|
||
|
Authorization: Basic {{$dotenv DISCORD_CLIENT_ID}}:{{$dotenv DISCORD_CLIENT_SECRET}}
|
||
|
|
||
|
token={{$dotenv DISCORD_ACCESS_TOKEN}}&token_type_hint=access_token
|