I think you need to change the expiration date in UserTokenProvider .
Try the following steps in UserManager<TApplicationUser> :
public static ApplicationUserManager Create( IdentityFactoryOptions<ApplicationUserManager> options, IOwinContext context) { var manager = new ApplicationUserManager(userStore); var dataProtectionProvider = options.DataProtectionProvider; if (dataProtectionProvider != null) { var tokenProvider = new DataProtectorTokenProvider<ApplicationUser>(dataProtectionProvider.Create("ASP.NET Identity"));
source share