的示例我試圖在沒有HTTP/Request2.php組件的情況下使用Bing的圖像搜索API獲取一些結果(as used in the official examples)。Bing圖像搜索API v5.0 PHP
據我所知,做出非常原始調用的唯一兩個必需參數是q
這是查詢字符串和subscription key
。必須使用標題發送key
。環顧四周後,我發現這個非常簡單的例子來發送標頭的PHP:
$sURL = "https://api.cognitive.microsoft.com/bing/v5.0/images/search?q=cats";
$aHTTP = array(
'Ocp-Apim-Subscription-Key' => 'xxxxxxx',
);
$context = stream_context_create($aHTTP);
$contents = file_get_contents($sURL, false, $context);
echo $contents;
但它不輸出任何東西。您是否願意幫助我使用Bing API的一個非常基本的示例?
看起來'key'不被識別,因爲API會返回'Missing key'。 – Nicero