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
Our team has many apps that use OAuth2. Each app requires own logout redirect url. In #984 OAUTH_LOGOUT_REDIRECT_URL was added but for all. May we have the ability to set it for one client only?
Thanks
The text was updated successfully, but these errors were encountered:
@k-lepa You actually can implement your own logic.
Your app's logout redirect to OP with return_url as query params, eg /signout where you record the return_url from query into session
/signout redirect the user the /oauth2/sessions/login/revoke
Then OP will redirect to OAUTH_LOGOUT_REDIRECT_URL which can be, eg /signout-redirect fetch the return_url from the session. And redirect the user back where they come from.
Hello,
Our team has many apps that use OAuth2. Each app requires own logout redirect url. In #984 OAUTH_LOGOUT_REDIRECT_URL was added but for all. May we have the ability to set it for one client only?
Thanks
The text was updated successfully, but these errors were encountered: