Verify JWT Token issued by Azure Active Directory B2C
npm install azure-jwt-verifyazure-jwt-verify
=================================


npm install --save azure-jwt-verify
javascript
var azureJWT = requre('azure-jwt-verify');
`
###Configuration and the JWT to verify
`javascript
var jwtToken = "YOUR_JWT_TOKEN_TO_VERIFY"; // You can find this url in Azure Active Directory B2C Section
const config = {
JWK_URI: "",
ISS: "",
AUD: ""
};
`
* JWK_URI and the ISS(Issuer) can be obtained from the metadata endpoint of the policies created in the B2C tenant.
* AUD(Audience) is the Client ID of the application accessing the tenant.
###Verify Function
`javascript
azureJWT.verify(jwtToken, config).then(function(decoded){
// success callback
}, function(error){
// error callback
})
``