Mohiuddin Sumon

Results 3 comments of Mohiuddin Sumon

it's still same on May,2022. Using client id from Auth0 to AppSync will result a 401

I also faced similar issue today, I passed the audience with decode call

@lucj what I finally ended up doing was something like this: ``` options = {"verify_signature": True, "verify_aud": False, "exp": True} return keycloak_instance.decode_token(given_token, key=given_key, options=options) ``` setting verify_aud false was sufficient...