scope not needed for /oauth/token

This commit is contained in:
Lim Chee Aun 2025-03-10 19:56:48 +08:00
parent 895c6086f3
commit 128c8e6fc0

View file

@ -84,7 +84,7 @@ export async function getAccessToken({
redirect_uri: REDIRECT_URI,
grant_type: 'authorization_code',
code,
scope: SCOPES,
// scope: SCOPES, // Not needed
// client_secret,
// code_verifier,
});