thomasgauthier commited on
Commit
1c5d6b7
1 Parent(s): d86547c
Files changed (1) hide show
  1. main.py +1 -3
main.py CHANGED
@@ -401,9 +401,7 @@ async def oauth_callback(code: str, state: str):
401
  'client_secret': client_secret
402
  }
403
  )
404
- access_token = token_data
405
-
406
- print(access_token)
407
  except Exception:
408
  traceback.print_exc()
409
 
 
401
  'client_secret': client_secret
402
  }
403
  )
404
+ print(token_response.status_code, token_response.text)
 
 
405
  except Exception:
406
  traceback.print_exc()
407