-
I tried to logout from Azure ADB2C with remove_account() but unsuccessful. Can you add example (in Sample) for logout like for javascript: https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/lib/msal-browser/docs/logout.md |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 12 replies
-
Your current question was posted in the repo of Microsoft Authentication Library (MSAL). MSAL's If, on the other hand, you were working on a web app, then there is a log out behavior there. Please checkout our Flask web app sample or Django web app sample and post your questions there. |
Beta Was this translation helpful? Give feedback.
I figure, this can be a feature request that MSAL builds that logout url for you, by:
remove_account()
API to return that url (but then the onus is on the calling app - such asaz logout
- to launch a browser with that url), orlougout_interactive()
api which launches the browser (when not using broker). This behavior matches theacquire_token_interactive()
.Shall we take this feature request, @bgavrilMS ?
On the other hand, @bokzzzz , if all you want is to alter step 4 that you described,