Identityserver4 - 将默认值 'AccessTokenLifetime' 从 3600 更改为
Identityserver4 - change the default 'AccessTokenLifetime' from 3600
在 Startup
class
我在哪里可以更改默认的过期时间。 (AccessTokenLifetime)
您无法在 Startup.cs 中控制它,而是在客户端配置中针对每个客户端进行配置。
var client = new Client()
{
ClientId = clientId,
ClientName = "My Client application",
ClientUri = "https://www.tn-data.se",
RequirePkce = true,
AccessTokenLifetime = 3600,
这允许不同的客户端有不同的令牌生命周期。
在 Startup
class
我在哪里可以更改默认的过期时间。 (AccessTokenLifetime)
您无法在 Startup.cs 中控制它,而是在客户端配置中针对每个客户端进行配置。
var client = new Client()
{
ClientId = clientId,
ClientName = "My Client application",
ClientUri = "https://www.tn-data.se",
RequirePkce = true,
AccessTokenLifetime = 3600,
这允许不同的客户端有不同的令牌生命周期。