【发布时间】:2017-08-07 03:18:11
【问题描述】:
我正在运行 IdentityServer4 的 Javascript 客户端示例,配置如下:
var config = {
authority: "https://localhost:44350",
client_id: "Js",
redirect_uri: "http://localhost:5003/callback.html",
response_type: "id_token token",
scope:"openid profile Api1",
post_logout_redirect_uri : "http://localhost:5003/index.html",
};
当我点击登录按钮时,授权指向我的 IdentityServer4 实例,我被重定向到项目中的 Account/Login 路由。
我正在寻找每一个地方,但我没有看到它知道在哪里或如何知道重定向到该路由,这个配置在哪里?
【问题讨论】:
标签: javascript c# openid-connect identityserver4