Skip to content

Commit

Permalink
Seeing if authlib will handle code verifier internally.
Browse files Browse the repository at this point in the history
  • Loading branch information
julialawrence committed Nov 24, 2023
1 parent 582923d commit f28a129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def authorized():
return redirect(url_for("homepage"))

# Use the code_verifier to exchange the authorization code for an access token
token = azure.authorize_access_token(code_verifier=code_verifier)
token = azure.authorize_access_token()

access_token = token.get("access_token")
if access_token:
Expand Down

0 comments on commit f28a129

Please sign in to comment.