我正在开发一个 Node.js 应用程序,并且正在努力验证 Mandrill Webhook 请求。
如此处所述http://help.mandrill.com/entries/23704122-Authenticating-webhook-requests在 PHP 中应该是这样的:
/**
* Generates a base64-encoded signature for a Mandrill webhook request.
* @param string $webhook_key the webhook's authentication key
* @param string $url the webhook url
* @param array $params the request's POST parameters
*/
function generateSignature($webhook_key, $url, $params) {
$signed_data = $url;
ksort($params);
foreach ($params as $key => $value) {
$signed_data .= $key;
$signed_data .= $value;
}
return base64_encode(hash_hmac('sha1', $signed_data, $webhook_key, true));
}
所以我想出了这个:
var url = "http://....";
var post = "<POST Data>";
require('crypto').createHmac("SHA1", "<Webhook Signature Key>").update(url+post).digest("base64");
不幸的是,这不起作用。我得到一个不同的签名。
POST 数据以 urlencoded 形式出现,例如:
mandrill_events=%5B%7B%22event%22%3A%22inbound ...
网址解码:
mandrill_events=[{"event":"inbound ...
Mandrill 文档说,不应包含分隔符,所以这是我正在使用的字符串(没有=
):
mandrill_events[{"event":"inbound ...
有什么想法吗?
PS:我仔细检查了 URL 和 Webhook Key :-)。