0
ための変更有効期限は、私は電子メールの検証トークンのトークンの寿命スパンを確保し、次のコードは、14日後に有効期限が切れています: -のAspアイデンティティ2 - モバイルトークン
if (Startup.DataProtectionProvider != null)
{
IDataProtector dataProtector = Startup.DataProtectionProvider.Create("ASP.NET Identity");
this.UserTokenProvider = new DataProtectorTokenProvider<IdentityUser, Guid>(dataProtector)
{
TokenLifespan = TimeSpan.FromDays(14)
};
}
私のアプリの別の領域では、I ASP.Identity ApplicationUserManagerのGenerateChangePhoneNumberTokenAsync(userId、phoneNumber)メソッドを呼び出すことによって、携帯電話番号トークンを使用しています。
問題は、15分後にモバイルトークンが期限切れになることです。
モバイルトークンの有効期間を変更するにはどうすればよいですか?
ありがとうございました! – Derek