I'm developing a Azure Mobile App and I need help about Azure Active Directory. I'd like that the user can login with a Microsoft, Facebook or Google account. But if the user has two or more accounts of different providers, those accounts can be linked to the same user and the user can login with any of those accounts. Is it possible?
1
votes
1 Answers
0
votes
Based on the description, it seems you want to support the application can authenticate multiple consume identity provider. As far as I know, the B2C tenant do support this scenario.
But if the user has two or more accounts of different providers, those accounts can be linked to the same user and the user can login with any of those accounts
The B2C tenant doesn’t support this feature. However, we can complete it in our app. For example, after the users sign-in, you may require the users to bind the account to a unique id, and then in your app you can use this unique id to identify all the accounts the same user bind.
More detail about B2C tenant developing, you can refer here.