admin管理员组文章数量:1344585
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.
本文标签: Generating HMACSHA256 Token in JavaScript to Match PHP OutputStack Overflow
版权声明:本文标题:Generating HMAC-SHA256 Token in JavaScript to Match PHP Output - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743803120a2541685.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论