azure-ad-b2c
Which Graph API should be used with Azure AD B2C
As of today, we recommend that you use the Azure Active Directory Graph API https://graph.windows.net to access and manage your B2C tenants. Azure AD B2C: Use the Graph API If you read this article, you can learn more about the gaps between AAD and Microsoft Graph API: https://dev.office.com/blogs/microsoft-graph-or-azure-ad-graph The bottom line in the table states: … Read more
Azure AD B2C – Role management [duplicate]
Azure AD B2C does not yet include Group claims in the token it sends to the application thus you can’t follow the same approach as you outlined with Azure AD (which does include group claims in the token). You can support this feature ask by voting for it in the Azure AD B2C feedback forum: … Read more
Authorize By Group in Azure Active Directory B2C
Obtaining group memberships for a user from Azure AD requires quite a bit more than just “a couple lines of code”, so I thought I’d share what finally worked for me to save others a few days worth of hair-pulling and head-banging. Let’s begin by adding the following dependencies to project.json: “dependencies”: { … “Microsoft.IdentityModel.Clients.ActiveDirectory”: … Read more