Reputation: 127
I want to build a webapp where users can log into to consume some services, view data and so on. The user can set up a new account and then log into with this account, just like the normal way you log in to many different web sites.
As I am already using Azure, I came across Azure AD B2C which seems to be perfect for my needs. I have seen that you can also include some other identity providers like facebook or google. Is it possible to integrate a completely own identity provider? I'm already using a different user validation system for another application in form of a WCF service which validates user credentials against a sql database.
Is it possible to forward the login data, the user inputs into the webapp, from Azure AD B2C to my wcf service to validate the credentials against the existing user db?
Upvotes: 0
Views: 1747
Reputation: 15991
Is it possible to forward the login data, the user inputs into the webapp, from Azure AD B2C to my wcf service to validate the credentials against the existing user db?
No, you cannot pass along the user input login data. You can federate with IDPs (identity providers) where the login occurs on the IDP.
As stated in Arunraja’s answer, B2C has support to plug-in a OpenID Connect IDP.
Upvotes: 0
Reputation: 184
Hey you can do this but this feature is in preview Azure AD B2C => Identity providers => Add => Select Identity provider type as Open Connect (Preview) Setup Identity provider following this link
Upvotes: 1