You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm building an OAuth provider that will have many client applications use it for logging in users. These applications are able to get authorization from a user and receive an access_token to associate/create users on their apps. However, when a user logs out of one of these applications and logs in again later (using a login/authorize link on the application) they are presented with the authorization form again when they have previously authorized the application.
Is there a way for django-oauth-toolkit's AuthorizationView to recognize when a user has already authorized a clientID, and immediately redirect, rather than require the user to click 'Authorize' on the form each time?