Is there a way to verify my JWT Token? I have some python code that uses the pypi.org
jwt module, and would like to verify that the token coming out of it is correct.
I am getting {"reason": "NOT_ENABLED"}
and I would like to make sure that my token is constructed correctly.
I have seen a few others that have the "aud":
entry in the header, but it's not mentioned in the documentation.
Further confusion over this documentation is the statement to use the "ES256" algorithm, but that requires .pem and a .pub files, but only a .p8 is supplied. (note I can extrapolate .pem and .pub files from the .p8, but that is not even discussed.
Can anyone from Apple chime in?