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
Form Angular application using MSAL, I login to azure and receive accessToken. Now to pull data from API I am passing access token as bearer in header of API.
Now please let me know how I can validate/authorize this token in backend Django rest api.
Do we have any in built function or module that I need to install and validate?
If not please let me know how I can validate/authorize my token and call graph api to get additional information of user.
The text was updated successfully, but these errors were encountered:
MSAL itself is a token acquisition library, not a token validation one, so you would need to look for alternative solution when it comes to token validation.
@rayluo is this something that PyJWT would fit the bill for?
Hello Team,
Form Angular application using MSAL, I login to azure and receive accessToken. Now to pull data from API I am passing access token as bearer in header of API.
Now please let me know how I can validate/authorize this token in backend Django rest api.
Do we have any in built function or module that I need to install and validate?
If not please let me know how I can validate/authorize my token and call graph api to get additional information of user.
The text was updated successfully, but these errors were encountered: