We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a32c7d commit 332829fCopy full SHA for 332829f
src/providers/discord.ts
@@ -17,7 +17,10 @@ export function discord(
17
authorization: 'https://discord.com/api/oauth2/authorize',
18
token: 'https://discord.com/api/oauth2/token',
19
userInfo: 'https://discord.com/api/users/@me'
20
+ // logout: 'https://discord.com/api/oauth2/token/revoke' //TODO: add post method, because discord using the post method to logout
21
},
22
+ grantType: 'authorization_code',
23
+ codeChallengeMethod: 'S256',
24
scope: ['identify', 'email']
25
}
26
0 commit comments