最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Generating HMAC-SHA256 Token in JavaScript to Match PHP Output - Stack Overflow

programmeradmin1浏览0评论

I am trying to call an API written in PHP that generates a token using the following method:

base64_encode(hash_hmac("sha256", "<api-key>", "<email>:<gmdate('y-m-d H')>"))

In JavaScript (Node.js), I attempted to generate the same token with this code:

import crypto from "crypto";

function generateToken(apiKey, email) {
  const timestamp = new Date().toISOString().slice(0, 13).replace("T", " ");
  const data = `${email}:${timestamp}`;

  const hash = crypto.createHmac("sha256", apiKey).update(data).digest("hex");
  return Buffer.from(hash).toString("base64");
}

// Example usage
const apiKey = "your-api-key";
const email = "[email protected]";
const token = generateToken(apiKey, email);

console.log(token);

However, the output of this function does not match the token generated by the PHP code, and I am unable to authenticate the API request.

发布评论

评论列表(0)

  1. 暂无评论