Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -137,13 +137,13 @@ def main():
|
|
137 |
# π Authentication
|
138 |
if 'access_token' not in st.session_state:
|
139 |
# π΅οΈββοΈ Check for authorization code in query parameters
|
140 |
-
query_params = st.
|
141 |
if 'code' in query_params:
|
142 |
code = query_params['code'][0]
|
143 |
st.write('π Acquiring access token...')
|
144 |
access_token = get_access_token(code)
|
145 |
st.session_state['access_token'] = access_token
|
146 |
-
st.
|
147 |
else:
|
148 |
# π’ Prompt user to log in
|
149 |
client_instance = get_msal_app()
|
|
|
137 |
# π Authentication
|
138 |
if 'access_token' not in st.session_state:
|
139 |
# π΅οΈββοΈ Check for authorization code in query parameters
|
140 |
+
query_params = st.get_query_params()
|
141 |
if 'code' in query_params:
|
142 |
code = query_params['code'][0]
|
143 |
st.write('π Acquiring access token...')
|
144 |
access_token = get_access_token(code)
|
145 |
st.session_state['access_token'] = access_token
|
146 |
+
st.rerun() # Reload the app to clear the code from URL
|
147 |
else:
|
148 |
# π’ Prompt user to log in
|
149 |
client_instance = get_msal_app()
|