自定义OpenID连接提供商ADB2C

发布于 2025-02-12 16:19:18 字数 754 浏览 1 评论 0 原文

我已经在ADB2C中为我的OpenID Connect服务器创建了一个自定义标识提供商,但是在通过用户流程运行时会出错 -

“输入图像描述在这里“

我做过的设置:

  1. 创建了一个新的OpenID ConnectProvider。

  1. 为Open-ID连接提供商创建了一个新的用户流:

我不确定如何通过ADB2C调试,因为这是一个非常通用的错误,如果我缺少任何错误步骤。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

弱骨蛰伏 2025-02-19 16:19:18

如果您的客户端ID在web.config文件中不正确,则此问题可能会导致该应用程序

  • 尝试打开web.config在web.config文件中的应用程序
  • ,请尝试查找应用程序键 iDA:clientid
  • 该应用程序的门户网站中提供的客户ID应用作应用程序密钥的值。

该文件的修改部分看起来像

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

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文