You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to generate signature such as in official example with the same keys but always have another result.
I tried with my own key but always gen an error 401
I use C# with Class HMACSHA256 to develop my software.
May be anybody knows how to fix it???
The text was updated successfully, but these errors were encountered:
var messageBytes = Encoding.UTF8.GetBytes(totalParams);
var keyBytes = Encoding.UTF8.GetBytes(secret);
var hash = new HMACSHA256(keyBytes);
var computedHash = hash.ComputeHash(messageBytes);
string sig = BitConverter.ToString(computedHash).Replace("-", "").ToLower();
Console.WriteLine(sig);`
Issue Overview
I tried to generate signature such as in official example with the same keys but always have another result.
I tried with my own key but always gen an error 401
I use C# with Class HMACSHA256 to develop my software.
May be anybody knows how to fix it???
The text was updated successfully, but these errors were encountered: