Hello,
I have set up the Azure B2C tenants and registered the application as web/web api.
While log in I do get the id_token. Along with token I see only to claim attributes that is Name and Email.
Where as I would need the claims mentioned at open id URL
"claims_supported": [
"name",
"emails",
"idp_access_token",
"jobTitle",
"postalCode",
"newUser",
"oid",
"sub",
"idp",
"extension_PhoneNumber",
"tfp",
"iss",
"iat",
"exp",
"aud",
"acr",
"nonce",
"auth_time"
]
I have been through several blogs, in most of the cases I see custom attributes, but in my case first I need to get B2C built in claim attributes.
Apart from custom policy is there any way to get the built in attributes along with id_token?