按照identityServer4教程here和here,我看到RedirectUris
设置为/signin-oidc
。我尝试搜索该端点正在发生的事情,或者更确切地说是它的实现位置,但没有成功。
new Client
{
...
// where to redirect to after login
RedirectUris = { "http://localhost:5002/signin-oidc" }
}
在这些IdentifyServer教程中,我在哪里可以找到/signin-oidc
和/signout-oidc
的实现?
答案 0 :(得分:0)
这是UseOpenIdConnectAuthentication
中间件的default回调路径。您可以查看存储库以了解它是如何工作的,但基本上它只是填充用户原则以进行授权。