Authentication
const apiKey = "<YOUR_API_KEY>";
const apiSecret = "<YOUR_API_SECRET>";
// Generate Base64 encoded credentials
const credentials = Buffer
.from(`${apiKey}:${apiSecret}`)
.toString("base64");Last updated
const apiKey = "<YOUR_API_KEY>";
const apiSecret = "<YOUR_API_SECRET>";
// Generate Base64 encoded credentials
const credentials = Buffer
.from(`${apiKey}:${apiSecret}`)
.toString("base64");Last updated