awacke1 commited on
Commit
7c4edb2
Β·
verified Β·
1 Parent(s): b020941

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -54,13 +54,13 @@ def main():
54
  # πŸ”‘ Authentication
55
  if 'access_token' not in st.session_state:
56
  # πŸ•΅οΈβ€β™‚οΈ Check for authorization code in query parameters
57
- query_params = st.experimental_get_query_params()
58
  if 'code' in query_params:
59
  code = query_params['code'][0]
60
  st.write('πŸ”‘ Acquiring access token...')
61
  access_token = get_access_token(code)
62
  st.session_state['access_token'] = access_token
63
- st.experimental_rerun() # Reload the app to clear the code from URL
64
  else:
65
  # πŸ“’ Prompt user to log in
66
  client_instance = get_msal_app()
 
54
  # πŸ”‘ Authentication
55
  if 'access_token' not in st.session_state:
56
  # πŸ•΅οΈβ€β™‚οΈ Check for authorization code in query parameters
57
+ query_params = st.get_query_params()
58
  if 'code' in query_params:
59
  code = query_params['code'][0]
60
  st.write('πŸ”‘ Acquiring access token...')
61
  access_token = get_access_token(code)
62
  st.session_state['access_token'] = access_token
63
+ st.rerun() # Reload the app to clear the code from URL
64
  else:
65
  # πŸ“’ Prompt user to log in
66
  client_instance = get_msal_app()