You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current workaround would simply be something like this:
claims=jwt.decode(...)
if"azp"notinclaims:
raiseJWTError("Expected azp to be in claims")
elifcalims["azp"] !=expected_azpraiseJWTError("Invalid authorized party")
Could we add an option to verify
azp
(Authorized party - the party to which the ID Token was issued
)? For example:The text was updated successfully, but these errors were encountered: