IdentityServer 3:AccessTokenLifetime最大值

时间:2017-08-23 14:40:35

标签: asp.net-web-api identityserver3

我使用IdentityServer3。 是否有关于设置的更多信息" AccessTokenLifetime"如果有最大值值?

我尝试将其设置为" int.MaxValue"。

                     new Client
                     {
                          ClientName = "ClientName ",
                          ClientId = "ClientId",
                          Flow = Flows.ResourceOwner,

                          ClientSecrets = new List<Secret>
                          {
                                new Secret("secret".Sha256())
                          },

                          AllowedScopes = new List<string>
                          {
                                "openid",
                                "MyFramework"
                          },
                          AccessTokenType = AccessTokenType.Jwt,
                          AccessTokenLifetime = int.MaxValue,                     
                     },

What is the max expiration time accepted by JWT tokens 这告诉我没有关于到期时间的规则。但是,如果我配置int.max它不起作用。

客户端获得结果&#34; invalid_token&#34;没有详细解释。在启动服务器时,IdentityServer3不会告诉我此设置无效。

0 个答案:

没有答案