MIMUSH-MSFTE
MIMUSH-MSFTE

Reputation: 137

Using Azure B2C Identity Experience Framework to call custom functions

We have create a working function, we need to use B2C Identity Experience Framework to call it. The App is not calling the function. The function URL has been specified in the TrustFrameworkExtensions.xml file.

Is this possible? And if so, what do I need to do?

Upvotes: 2

Views: 480

Answers (2)

Daniel Krzyczkowski
Daniel Krzyczkowski

Reputation: 3167

To call external service call during login and registration, please see my article where I explained step by step how to do it using custom policies in the Azure AD B2C Identity Experience Framework:

Azure AD B2C Series - external service call during login and registration

Upvotes: 0

Jose Rojas
Jose Rojas

Reputation: 216

Yes. It is possible. Here are 5 articles on learn.microsoft.com that show various ways to interact with APIs. The first and second specifically use an Azure Function. The function URL is specified in the Technical Profile (TP), that TP is then called in an orchestration step during user journey execution.

Regards, J

  1. Walkthrough: Integrate REST API claims exchanges in your Azure AD B2C user journey as validation on user input

  2. Walkthrough: Integrate REST API claims exchanges in your Azure AD B2C user journey as an orchestration step

  3. Integrate REST API claims exchanges in your Azure AD B2C user journey as validation of user input

  4. Secure your RESTful services by using HTTP basic authentication

  5. Secure your RESTful service by using client certificates

Upvotes: 2

Related Questions