Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/asp.net/34.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Asp.net Identity Server v2多来源登录_Asp.net_Authentication_Login_Wif_Thinktecture Ident Server - Fatal编程技术网

Asp.net Identity Server v2多来源登录

Asp.net Identity Server v2多来源登录,asp.net,authentication,login,wif,thinktecture-ident-server,Asp.net,Authentication,Login,Wif,Thinktecture Ident Server,我在开发环境(Windows 7 Professional Visual Studio 2012)中与一个依赖方一起运行thinktecture IdentityServer v2 我的依赖方(www.myprotectedcustomersite.com)是一个使用WIF联合的ASP.NETFramework 4网站 这个很好用。当我尝试访问www.myprotectedcustomersite.com时,我被重定向到IdentityServer登录,当我通过身份验证时,我被重定向回www.m

我在开发环境(Windows 7 Professional Visual Studio 2012)中与一个依赖方一起运行thinktecture IdentityServer v2

我的依赖方(www.myprotectedcustomersite.com)是一个使用WIF联合的ASP.NETFramework 4网站

这个很好用。当我尝试访问www.myprotectedcustomersite.com时,我被重定向到IdentityServer登录,当我通过身份验证时,我被重定向回www.myprotectedcustomersite.com

我的问题是,我有另一个网站(www.mycompanyfrontdoorsite.com),用户需要能够登录(在主页上)并进行身份验证,然后通过IdentityServer重定向到www.myprotectedcustomersite.com。我的大多数用户通过这种方式进入www.myprotectedcustomersite.com

我不确定该如何配置它。我做了一些研究,还没有找到解决这个问题的办法

我正在尝试在不对IdentityServer进行任何重大更改的情况下完成这项工作


我希望有人能帮上忙。

听起来这些都需要在STS中单独配置一个RP。然后,如果/当RP1希望将用户发送到RP2时,它可以执行重定向。一旦他们登陆RP2,它将触发对STS的身份验证,他们仍将登录,并向RP2发出令牌。回想一下,联合的一个目标是SSO。我不明白为什么IdentityServer需要参与重定向。

谢谢,这正是我想要的!