From 128c8e6fc0a3aaba0f89f0d96e8f54384f3f00b4 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Mon, 10 Mar 2025 19:56:48 +0800 Subject: [PATCH] scope not needed for /oauth/token --- src/utils/auth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/auth.js b/src/utils/auth.js index 564ec012..f0aaa8ac 100644 --- a/src/utils/auth.js +++ b/src/utils/auth.js @@ -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, });