我目前正在尝试在 MS Cognitive Services Bing Search API 上进行新闻搜索。我已经阅读了很多文档,但似乎被卡住了。
这是我正在使用的代码:
$url = 'https://bingapis.azure-api.net/api/v5/news/search?q=microsoft&mkt=en-us';
$key = '{MY KEY}';
$request_headers = array();
$request_headers[] = 'Ocp-Apim-Subscription-Key: '. $key;
$request_headers[] = 'User-Agent: mozilla';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $request_headers);
$data = curl_exec($ch);
curl_close($ch);
echo $data;
此代码返回以下结果:
{ "statusCode": 401, "message": "Access denied due to invalid subscription key. Make sure to provide a valid key for an active subscription." }
当我从网站上的 API Explorer 得到相同的结果时,我认为问题出在我的密钥上,而不是我的代码上。但这是认知服务为我的订阅提供的密钥,可在https://www.microsoft.com/cognitive-services/en-us/subscriptions上找到(登录时)。
如果这不是正确的密钥,我应该使用什么?