Views:
158 Total Answered:
1 Total Marked As Answer:
1 Posted On:
30-Sep-2024 00:51
Share:
Answers
Priya
1194
Points
33
Posts
Azure AD B2C requires the registration of two applications for user sign-up and sign-in with local accounts: IdentityExperienceFramework (a web API) and ProxyIdentityExperienceFramework (a native app with delegated permission to the IdentityExperienceFramework). Users can sign up using an email address or username along with a password to access applications registered to your tenant, resulting in the creation of a "local account." These local accounts are exclusive to your Azure AD B2C tenant.
To resolved your issue first register the ProxyIdentityExperienceFramework application as follow:
Replace Application (client) ID from above to the custom policy
Add the application IDs to the extensions file TrustFrameworkExtensions.xml.
Open LocalAccounts/TrustFrameworkExtensions.xml and find the element <TechnicalProfile Id="login-NonInteractive">.
Replace both instances of ProxyIdentityExperienceFrameworkAppId with the application ID of the ProxyIdentityExperienceFramework application that you created earlier.