fix: remove scope with auth code grant (#2815)

This commit is contained in:
Adrian 2024-08-16 16:35:33 +02:00 committed by GitHub
parent b872fdfe6d
commit df120787ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,9 +32,6 @@ const resolveOAuth2AuthorizationCodeAccessToken = async (request, collectionUid)
client_secret: clientSecret,
state: state
};
if (scope) {
data['scope'] = scope;
}
if (pkce) {
data['code_verifier'] = codeVerifier;
}