ThinkTecture Identity 服务器客户端网站上的记住我功能
Remember me feature on ThinkTecture Identity server client website
在我的解决方案中,我使用的是 Thinktecture IdentityServer。
我想介绍记住我的功能(持久性 cookie),所以我使用了此处描述的 AllowRememberMe
选项:https://identityserver.github.io/Documentation/docsv2/configuration/authenticationOptions.html
这工作正常,但持久性 cookie 仅为 IdentityServer 实例创建 - 而不是为要求身份验证的客户端网站创建。
我的问题是:是否有开箱即用的解决方案来实现这一点?或者我是否以某种方式通过声明传递了有关 cookie 过期的详细信息?
当然,身份服务器只能为自己发布 cookie,而不能为您的应用程序发布。您需要在您的应用程序代码中执行此操作。
在我的解决方案中,我使用的是 Thinktecture IdentityServer。
我想介绍记住我的功能(持久性 cookie),所以我使用了此处描述的 AllowRememberMe
选项:https://identityserver.github.io/Documentation/docsv2/configuration/authenticationOptions.html
这工作正常,但持久性 cookie 仅为 IdentityServer 实例创建 - 而不是为要求身份验证的客户端网站创建。
我的问题是:是否有开箱即用的解决方案来实现这一点?或者我是否以某种方式通过声明传递了有关 cookie 过期的详细信息?
当然,身份服务器只能为自己发布 cookie,而不能为您的应用程序发布。您需要在您的应用程序代码中执行此操作。