Disclaimer: This website requires JavaScript to function properly. Some features may not work as expected. Please enable JavaScript in your browser settings for the best experience.

HomeDev guideRecipesAPI Reference
Dev guideUser GuidesLegal TermsNuGetDev CommunityOptimizely AcademySubmit a ticketLog In
Dev guide

HMAC

The most secure administrative access

Authorization: "epi-hmac {appKey}:{timestamp}:{nonce}:{signature}"

HMAC (Hash-based Message Authentication Code) is the best choice for users who prioritize security, as it ensures message integrity and authenticity by combining a secret key with a cryptographic hash function. This makes it particularly suitable for applications handling sensitive data in some sectors, such as finance. Users can trust that HMAC protects their communications from unauthorized access and tampering.

You can implement this method using your appKey and secret credentials. Refer to the recipe below for more details.