Hello, I need to integrate third-party authentication into my Streamlit app, which essentially enables users to proceed in the app after authentication. The problem is the only way to communicate with this third-party tool is by supplying a redirection URL if there is a successful authentication and nothing else. This means that if a user is successfully authenticated, it will return the main URL, which is essentially the only URL that Streamlit operates. This causes a change in session state and starts from the beginning of the app.
So, there are basically two ways of solving this issue. The first one is to persist session state along with different states, which does not seem to be possible. Another way is to create a multipage app where pages actually belong to different URLs. Is that something possible, or does anyone have an alternative idea for such an authentication funnel?