Navigation

    SmartAPI Forum
    • Register
    • Login
    • Search
    • Categories
    • Popular
    • Groups
    • FAQs
    • API Docs
    1. Home
    2. dstelangre
    3. Best
    D
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Best posts made by dstelangre

    • RE: Invalid TOTP for c#

      @admin @administrators I have same issue please provide the solution for c#

      posted in General Discussion
      D
      dstelangre
    • RE: Invalid TOTP for c#

      Here is DLL and TOTP generation code . just add OtpNet
      nuget package

      public 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

      posted in General Discussion
      D
      dstelangre