Skip to content

Commit

Permalink
Send assertion as a string, not bytes.
Browse files Browse the repository at this point in the history
  • Loading branch information
fredmanglis committed Apr 24, 2024
1 parent 72acd03 commit 74ff470
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gn2/wqflask/oauth2/toplevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def authorisation_code():
"nbf": int(issued.timestamp()),
"iat": int(issued.timestamp()),
"jti": str(uuid.uuid4())},
key=jwtkey),
key=jwtkey).decode("utf8"),
"client_id": app.config["OAUTH2_CLIENT_ID"]
}

Expand Down

0 comments on commit 74ff470

Please sign in to comment.