新しい Bing API 用の Microsoft 独自の PHP サンプルは機能しません。私は多くの方法で試しましたが、それはただ示しています:
サーバー エラー
401 - 権限がありません: 資格情報が無効なため、アクセスが拒否されました。
指定した資格情報を使用してこのディレクトリまたはページを表示する権限がありません。
公式ドキュメントに記載されているコーディング例は以下のとおりです。
'proxy' => 'tcp://127.0.0.1:8888',
キーが正しいことは 100% 確信しており、ブラウザの URL にキーを入力するだけで問題なく動作します。
https://api.datamarket.azure.com/Bing/SearchWeb/Web?Query=%27love+message%27
(パスワードとユーザー名は何でもかまいませんので、APIキーを入力する必要があります)
<html>
<head>
<link href="styles.css" rel="stylesheet" type="text/css" />
<title>PHP Bing</title>
</head>
<body>
<form method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">
Type in a search:
<input type="text" id="searchText" name="searchText"
value="<?php
if (isset($_POST['searchText']))
{
echo($_POST['searchText']);
}
else
{
echo('sushi');
}
?>"
/>
<input type="submit" value="Search!" name="submit" id="searchButton" />
<?php
if (isset($_POST['submit']))
{
// Replace this value with your account key
$accountKey = 'BKqC2hIKr8foem2E1qiRvB5ttBQJK8objH8kZE/WJVs=';
$ServiceRootURL = 'https://api.datamarket.azure.com/Bing/Search/';
$WebSearchURL = $ServiceRootURL . 'Image?$format=json&Query=';
$context = stream_context_create(array(
'http' => array(
//'proxy' => 'tcp://127.0.0.1:8888',
'request_fulluri' => true,
'header' => "Authorization: Basic " . base64_encode($accountKey . ":" . $accountKey)
)
));
$request = $WebSearchURL . urlencode( '\'' . $_POST["searchText"] . '\'');
echo($request);
$response = file_get_contents($request, 0, $context);
print_r($response);
$jsonobj = json_decode($response);
echo('<ul ID="resultList">');
foreach($jsonobj->d->results as $value)
{
echo('<li class="resultlistitem"><a href="' . $value->MediaURL . '">');
echo('<img src="' . $value->Thumbnail->MediaUrl. '"></li>');
}
echo("</ul>");
}
?>
</form>
</body>
</html>
Google API と Yahoo API の両方を試しましたが、これほど難しいものはありませんでした。