0

I have created a custom identity provider in adb2c for my openid connect server but getting error while running it through User Flow -

enter image description here

Setps I did :

  1. Created a new openId Connectprovider.

enter image description here

  1. Created a new user flow for open-id connect provider :

enter image description here

I am not sure how to debug this through adb2c as that's a quite generic error and if I am missing any steps.

1 Answers1

0

This issue may cause if your client ID is incorrect in the web.config file for the app

  • Try to Open Web.config file for the app
  • In Web.config file,try to find the app key ida:ClientId.
  • The client ID provided in the portal for your app should be used as the value of the app key.

The file's modified section looks like

<appSettings>
<add key="ida:ClientId" value="**xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx**">
</appSettings>

Credits to MsDoc

Imran
  • 3,875
  • 2
  • 3
  • 12