Azure B2C include application permissions as claims in the Token

763 Views Asked by At

My application uses Azure B2C and signin flows to login. I was able to add a couple of custom user attributes and embed them in the token. Now I want to implement UI permissions on the app. (say I want to give read permissions to a view but hide edit/delete buttons on that view based on permissions).

Is this possible to implement such claims (e.g. my_view_read: boolean, my_view_write: boolean) on B2C? Do I have to embed them as user attributes to include in the token?

1

There are 1 best solutions below

2
On

Yes, you can definitely do this is B2C by using Custom Claims. You can refer to this detailed article by Daniel: https://daniel-krzyczkowski.github.io/Azure-AD-B2C-Series-Custom-Policies-With-Custom-Claims/ on how to create such claims in custom policies.

Once you add these claims in your token, you can read it in your client application and set the views in it based on the permissions set for the user through these claims.

Pls note that you will also have to set the values of these custom attributes using Graph API/ SISU page.