[Vuejs]-Azure b2c accesstoken does not work with aZURE APIM

0👍

JWT is predominantly used for authorization. The access token contains a hash of header and payload based on the algorithm provided in the header. You can check this using JWT playground.

The error might be because of the policy. As the access token received from the server should be able authorize the api call .
Refer the following
API Management access restriction policies

you can also refer this article.

Leave a comment