identityserver4中的openid连接

时间:2017-01-30 20:40:09

标签: identityserver4

按照identityServer4教程herehere,我看到RedirectUris设置为/signin-oidc。我尝试搜索该端点正在发生的事情,或者更确切地说是它的实现位置,但没有成功。

new Client
{
  ...
  // where to redirect to after login
  RedirectUris = { "http://localhost:5002/signin-oidc" }
}

在这些IdentifyServer教程中,我在哪里可以找到/signin-oidc/signout-oidc的实现?

1 个答案:

答案 0 :(得分:0)

这是UseOpenIdConnectAuthentication中间件的default回调路径。您可以查看存储库以了解它是如何工作的,但基本上它只是填充用户原则以进行授权。