API Security
Overview
Authentication Headers
Signature Generation
Implementation Examples
const crypto = require('crypto');
function generateSignature(requestBody, signatureKey) {
return crypto.createHmac('sha256', signatureKey)
.update(requestBody)
.digest('hex')
.toUpperCase();
}Request Example
Test Case
Last updated