I have a request and have a SecretApiKey, how do I sign the request body using System.Security.Cryptography.HMACSHA256() whose key to the requests was SecretApiKey?
Nick Iliev
Telerik team
commented on 01 Nov 2021, 10:58 AM
That pretty much depends on what the server expects, so you should probably check the API requirements. You can use this blog post as a reference - the user explains how a specific service uses the hashing algorithm to encrypt each request with the secret key.
That pretty much depends on what the server expects, so you should probably check the API requirements. You can use this blog post as a reference - the user explains how a specific service uses the hashing algorithm to encrypt each request with the secret key.