Tip
Learn more in User authentication and information.
Logout the current user.
This command removes the user's information from st.experimental_user, deletes their identity cookie, and redirects them back to your app's home page. This creates a new session.
If the user has multiple sessions open in the same browser, st.experimental_user will not be cleared in any other session. st.experimental_user only reads from the identity cookie at the start of a session. After a session is running, you must call st.login() or st.logout() within that session to update st.experimental_user.
Note
This does not log the user out of their underlying account from the identity provider.
Function signature[source] | |
---|---|
st.logout() |
Example
.streamlit/secrets.toml:
Your app code:
Still have questions?
Our forums are full of helpful information and Streamlit experts.