我引用的是:https://www.nuget.org/packages/GoogleAuthenticator
我需要一种每10天在每台设备上进行Google身份验证的方法。
因此,如果用户使用了3台设备,那么每隔10天,每台设备都会要求Google进行身份验证。
我知道如何如下所示进行验证,但不确定如何对每台设备进行验证。
TwoFactorAuthenticator tfa = new TwoFactorAuthenticator();
var validPin = tfa.ValidateTwoFactorPIN(account, pwd_entered);
有什么办法可以做我提到的吗?