I've encoded a Firebase JWT token to authenticate a 'buyer' in my PHP Slim API. It encodes correctly and generates a JWT token in Postman, Postman JWT encoding but when I try to use the JWT for Bearer Authentication to access a group of protected routes in my routes...
Trying to decode the ID token at jwt.io yields the expected outcome, and the ID token consists of three elements. Therefore I'm curious as to why pyjwt complains about there not being enough elements. Any tips and pointers in the right direction would be much appreciated!
I checked the validity of my token using Postman- it's working there. I'm stuck since 2 days. Anyone please help Microsoft Entra ID Microsoft Entra ID A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory. ...
For future reference: this error occurs when the token does not adhere to the expected format of a jwt token For example I ran into this in unit tests where the token was mocked with something like "FAKE_TOKEN" Currently this lib assumes a valid syntax for the token meaning the token mus...