@admin @administrators I have same issue please provide the solution for c#
D
Best posts made by dstelangre
-
RE: Invalid TOTP for c#
-
RE: Invalid TOTP for c#
Here is DLL and TOTP generation code . just add OtpNet
nuget packagepublic static string GetTotp()
{
var secretKey = OtpNet.Base32Encoding.ToBytes("totp key that appears below QR code ");
var totp = new Totp(secretKey);
var otp = totp.ComputeTotp();
return otp;
}DLL link:
https://drive.google.com/file/d/1Z6Z016OoDDuOdKiBQNMVly-lkvUMAbbX/view?usp=sharing