我正在构建一个查询以将文章发布到 Apple News API,并且收到 WRONG_SIGNATURE 响应。
Apple 指示您执行以下操作:
将请求的规范版本创建为以下内容的逐字节串联:
HTTP 方法(例如,GET 或 POST,全部大写)
请求的完整 URL
ISO 8601 格式的当前日期
如果请求是 POST 请求并且它包含一个实体,请包含以下内容:
Content-Type 标头的值
实体的全部内容
将 API 密钥的秘密从 Base64 解码为原始字节。
使用 HMAC SHA-256 在规范请求上使用解码的 API 密钥创建散列。
使用 Base64 对哈希进行编码。
将授权标头设置为:
授权:HHMAC;键=; 签名=; date= 其中是步骤 1 中的日期字符串。
发送请求。
这是我返回 WRONG_SIGNATURE 结果的代码(API 凭据已更改)
//set the timezone
date_default_timezone_set('UTC');
//get json to be sent
$data = file_get_contents('http://www.broadwayworld.com/articleapple.cfm?colid=195', true);
//set variables
$http_method = 'POST';
$date = gmdate('Y-m-d\TH:i:s\Z');
$key = '62a75411-dd-4c3b-9d9-c7053760';
$url = 'https://news-api.apple.com/channels/485ae91a-2212-4276-9d07-82da7/articles';
$secret = base64_decode('9w9sElVs4UVGxMkGxCWOOWHJknKiNWa6tA=');
//cannonical request
$canonical_request = $url . $http_method . $date;
//Signature
$api_signature = base64_encode(hash_hmac('sha256', $canonical_request, $secret));
//curl options
$ch = curl_init();
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL, $url);
$headers = array();
$headers[] = "Authorization: HHMAC; key={$key}; signature={$api_signature}; date={$date}";
$headers[] = 'Content-Type: multipart/form-data';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
//get result
$server_output = curl_exec ($ch);
curl_close ($ch);
print $server_output ;