Open
Description
I have the following set in my settings.py
OAUTH2_PROVIDER = {
'ACCESS_TOKEN_EXPIRE_SECONDS': 36000,
'AUTHORIZATION_CODE_EXPIRE_SECONDS': 600,
# 'OAUTH2_BACKEND_CLASS': 'oauth2_provider.oauth2_backends.JSONOAuthLibCore',
'SCOPES': {
'read': 'Read scope',
'write': 'Write scope',
},
'PKCE_REQUIRED': False, # Ensure PKCE is required as per security best practices
}
But I don't see the Authorize Consent Form every time I try to Log in via OAuth. What is the exact thing in the Database of Cache that is stopping the consent form from appearing again? I want to show the consent form for Authorization, each time the user log in via OAuth.