【发布时间】:2019-08-28 14:39:19
【问题描述】:
在我的 bing 自定义搜索 API 上提交搜索时,它返回 404 not found。
我已将 API 密钥和端点更改为我的详细信息 我的终点是:https://fruitbox-search.cognitiveservices.azure.com/bing/v7.0
// Replace with a valid subscription key from your Azure account.
$accessKey = 'MY-KEY-HERE';
$endpoint = 'https://fruitbox-search.cognitiveservices.azure.com/bing/v7.0';
$term = 'Microsoft Cognitive Services';
function BingWebSearch ($url, $key, $query) {
/*
* Prepare the HTTP request.
* NOTE: Use the key 'http' even if you are making an HTTPS request.
* See: http://php.net/manual/en/function.stream-context-create.php.
*/
$headers = "Ocp-Apim-Subscription-Key: $key\r\n";
$options = array ('http' => array (
'header' => $headers,
'method' => 'GET'));
// Perform the request and receive a response.
$context = stream_context_create($options);
$result = file_get_contents($url . "?q=" . urlencode($query), false, $context);
// Extract Bing HTTP headers.
$headers = array();
foreach ($http_response_header as $k => $v) {
$h = explode(":", $v, 2);
if (isset($h[1]))
if (preg_match("/^BingAPIs-/", $h[0]) || preg_match("/^X-MSEdge-/", $h[0]))
$headers[trim($h[0])] = trim($h[1]);
}
return array($headers, $result);
}
我的控制台出现以下错误:
GET https://fruitbox-search.cognitiveservices.azure.com/bing/v7.0?q=test&mkt=en-US&SafeSearch=strict&promote=webpages&answerCount=9&count=25&offset=0&textDecorations=true&textFormat=HTML 404(找不到资源)-VM523:1
拒绝获取不安全的标头“BingAPIs-TraceId”-script.js:264
【问题讨论】:
-
你检查了吗,邮递员可以正常工作吗?
-
我可能听起来很愚蠢,但我该怎么做呢?
-
我已经用 getpostman 进行了检查,但没有找到返回的 404
-
然后检查 API 文档,验证您是否按照文档传递数据
标签: javascript json bing-api