简体   繁体   中英

How to logout / signout from IBM Cloud App ID in Python Flask

I have integrated IBM Cloud App ID service in my Python Flask web application referring this link

The login is working through Google/Facebook but I am not able to logout from the application.

Does anyone know how to logout from this application?

That Python app is using Flask and its session to manage the authorization scope and tokens. You could implement a route logout that removes the stored information from session . Parts of it are already shown for invalid authorization requests in your linked sample:

if (not idTokenPayload or not accessTokenPayload):
            session[WebAppStrategy['AUTH_CONTEXT']]=None

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM