Reputation: 1835
Is it possible to associate more than a login to a user in Azure AD B2C? e.g. FB and Google +? I am looking for something like Identity in ASP.net where you can have a user associate multiple log in accounts to the same profile.
Cheers
Alberto
Upvotes: 3
Views: 1420
Reputation: 46
The option is supported only by using Custom Policies (Built-in policies still lack this function so far).
If you are willing to learn how to build custom policies I would suggest you check the official documentation:
And download the community-driven repo of Azure AD-B2C of custom policies:
Azure AD-B2C Starter-pack from Github
Furthermore, the key points you should understand to add this function are:
All of the documentation is available on the above-mentioned link, a quick hint for those already familiar with custom policies is to check out directly this link:
Social accounts claims transformations
Hope this is helpful!
Upvotes: 3
Reputation: 10652
Linking identities from multiple providers to a single user account is not currently supported in Azure AD B2C.
You can vote for this ask in the Azure AD B2C UserVoice forum to help the team prioritize it: https://feedback.azure.com/forums/169401-azure-active-directory/suggestions/10686759-limit-conccurent-multiple-logins-in-b2c-ad
Upvotes: 2