aronmal
2e529cede8
fix: fixed ImageSection being broken on mobile feat: added proper imprint feat: added name to privacy-policy feat: bump version fix: fixed footer not rendering correct on some mobile devices chore: bump version feat: imported html from Config repo Updated packages Migration from astro to solid-start Add database and auth Add discord rest testing Database schema rework API meeting progress Fix styles
20 lines
598 B
HTTP
20 lines
598 B
HTTP
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
|