Hi @Movin D
Thank you for posting this in Microsoft Q&A.
I understand that you are facing an issue with Azure AD B2C. Based on the error message you provided, it seems like there is an issue with the sign-in process.
As mentioned in the document https://learn.microsoft.com/en-us/troubleshoot/entra/entra-id/b2c/error-sign-into-app it may be caused by the client ID missing or being incorrect in the Web.config file for the app.
To fix this issue, please follow these steps:
- Open the Web.config file for the app.
- In the Web.config file, find the app key ida:ClientId.
- Replace the value of the app key with the client ID that is provided for your app in the Azure AD B2C admin portal.
<appSettings>
<add key="ida:ClientId" value="**xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx**">
</appSettings>
If you are still encountering issues, could you please provide more information about the configuration of your user flows? Specifically, are the user flows using the same identity providers? Also, please let me know how you registered your application.
Hope this helps. Do let us know if you any further queries.
Thanks,
Navya.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.