OpenID Connect - Using IdentityServer for SSO between WinForms and Web Application

人盡茶涼 提交于 2019-12-08 14:21:30

There aren't any out of the box mechanisms as the SSO is achieved by setting the cookies in the user agent (UA). So, if the user authenticates in a webview in your winforms app and then it launches the browser like this

System.Diagnostics.Process.Start("http://www.website.com");

in order to open the web app, it won't obviously work because it's not the same UA.

Nevertheless, if you use the same webview to open your web app you can achieve this.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!