Reputation: 20603
I have been using OpenID Connect workflow with azure active directory and getting the ID token which in turn is a JWT. Decoding the JWT token i can see few personal information attributes (PII) such as firstname, lastname and email. Is there any way to inform the Azure AD that to avoid sending these attributes as part of the JWT token.
Thanks.
Upvotes: 1
Views: 284
Reputation: 1649
Azure AD v2.0 does not include them by default. See https://learn.microsoft.com/en-us/azure/active-directory/develop/active-directory-optional-claims
Upvotes: 4