Home > Back-end >  Identityserver4 - change the default 'AccessTokenLifetime' from 3600
Identityserver4 - change the default 'AccessTokenLifetime' from 3600

Time:12-29

in Startup class

where can i change the default Expiration time. (AccessTokenLifetime)

CodePudding user response:

You don't control that in Startup.cs, instead you configure that per client in the client configuration.

var client = new Client()
{
    ClientId = clientId,
    ClientName = "My Client application",
    ClientUri = "https://www.tn-data.se",
    RequirePkce = true,

    AccessTokenLifetime = 3600,

This allows different clients to have different token lifetimes.

  • Related