この投稿を読みました: Bing 検索 API と Azure
そして、次のコードを使用してそれを模倣しました。
<?php
if (isset($_GET['bingquery'])){
// Replace this value with your account key
$accountKey = '***myaccountkey***';
$WebSearchURL = 'https://api.datamarket.azure.com/Bing/Search/v1/' + 'News?$format=json&Query=';
$cred = sprintf('Authorization: Basic %s', base64_encode($accountKey . ":" . $accountKey) );
$context = stream_context_create(array(
'http' => array(
'header' => $cred
)
));
$request = $WebSearchURL . urlencode( '\'' . $_GET["bingquery"] . '\'');
$response = file_get_contents($request, 0, $context);
echo $response;
}
?>
私のAJAX呼び出しは次のとおりです。
var bingquery = "bingquery=" + $('#query').val();
$.ajax({
url: "bingsearch.php",
method: "get",
dataType: "json",
data: bingquery,
success: function(jsondata){
console.log(jsondata);
}
});
しかし、まだ Bing Search から JSON 形式のデータを取得できません。何か提案はありますか? 手伝ってくれてどうもありがとう!