Hi jmangelo, I tried adding the Custom Claim using a rule in order to add the email to the Access Token, just like you said. However, I still cannot see anything in my Api when it is called.
function (user, context, callback) {
context.accessToken[“https://something/api/v2/email”] = user.email;
callback(null, user, context);
}
As you can see from this screenshot there is no sign of any custom claims
The Startup.cs file and everything in the Agular project are exactly as described in the two tutorials mentioned earlier.