Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

User Flow (Policy Name) upper case in settings would cause invalid issuer exception #9

Open
DominaTang opened this issue Feb 25, 2022 · 0 comments

Comments

@DominaTang
Copy link

Hi,

Thank you for the package, it's very easy to use. In our application, we compose issuer link by Policy Name which has upper case letter.
The code throw exception say the issuer is invalid while validate an access token.
For example:
azure_ad_issuer= "https://xxxx.b2clogin.com/tfp/xxxx .../B2C_1_SignIn/v2.0/"

if change it to lower case:
payload = verify_jwt(
token= token_to_verify,
valid_audiences=[AZURE_CLIENT_ID],
issuer=azure_ad_issuer.lower(),
jwks_uri=azure_ad_jwks_uri.lower(),
verify=True,
)
then everything is good. It'd better change the package code to avoid this trick?
Thanks,
Domina

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant