FormidableLabs / react-native-app-auth

React native bridge for AppAuth - an SDK for communicating with OAuth2 providers
https://commerce.nearform.com/open-source/react-native-app-auth
MIT License
1.96k stars 437 forks source link

Logout on non-OpenId servers #833

Open facundososalopez opened 1 year ago

facundososalopez commented 1 year ago

What would be the correct way to logout when the authorization server is NOT OPEN-ID?

justin-tay commented 1 year ago

If it is not an open id connect server you should use the token revocation endpoint. See https://oauth.net/2/token-revocation/.

facundososalopez commented 1 year ago

Thanks!!!