Microsoft Bing検索エンジンでプログラムで検索を実行しようとしています。
ここに私の理解があります:
古いAPI(Bing Search API 2.0)では、URLにキー(アプリケーションID)を指定します。このキーはリクエストの認証に使用されます。 URLのパラメーターとしてキーを持っている限り、結果を取得できます。
新しいAPI(Windows Azure Marketplace)では、URLにキー(アカウントキー)を含めません。代わりに、クエリURLを入力すると、サーバーは資格情報を要求します。ブラウザを使用する場合は、pop-upがあり、/ cの名前とパスワードを要求します。指示は、アカウント名を空白のままにして、パスワードフィールドにキーを挿入することでした。
さて、私はそれをすべて完了し、ブラウザページでJSON形式の検索結果を見ることができます。
PHPでプログラムでこれを行うにはどうすればよいですか? Microsoft MSDNライブラリからドキュメントとサンプルコードを検索しようとしましたが、間違った場所で検索していたか、リソースが非常に限られています。
PHPお願いします?]の「ポップアップのパスワードフィールドにキーを入力してください」の部分をどのように行うかを教えていただけますか。
事前に感謝します。
新しいサービスのドキュメントは、特にMSDNのうさぎのウォーレンで、少し興味深いものになります。私が見つけることができる最も明確な説明は、 移行ガイド このページから Bing Search API ページにあります。何よりも、移行ガイドの最後にPHPの簡単な例があります。
編集:さて、移行ガイドは出発点ですが、最良の例ではありません。私に役立つ2つの方法があります(プロキシ、ファイアウォールなどが干渉しない):
注:これを機能させるには、「 allow_url_fopen 」を有効にする必要があります。そうでない場合は ini_set を使用します(またはphp.iniなどを変更します)。
if (isset($_POST['submit']))
{
// Replace this value with your account key
$accountKey = 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=';
$ServiceRootURL = 'https://api.datamarket.Azure.com/Bing/Search/';
$WebSearchURL = $ServiceRootURL . 'Web?$format=json&Query=';
$cred = sprintf('Authorization: Basic %s',
base64_encode($accountKey . ":" . $accountKey) );
$context = stream_context_create(array(
'http' => array(
'header' => $cred
)
));
$request = $WebSearchURL . urlencode( '\'' . $_POST["searchText"] . '\'');
$response = file_get_contents($request, 0, $context);
$jsonobj = json_decode($response);
echo('<ul ID="resultList">');
foreach($jsonobj->d->results as $value)
{
echo('<li class="resultlistitem"><a href="'
. $value->URL . '">'.$value->Title.'</a>');
}
echo("</ul>");
}
最近のcURLがインストールされている場合:
<?php
$query = $_POST['searchText'];
$accountKey = 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA';
$serviceRootURL = 'https://api.datamarket.Azure.com/Bing/Search/';
$webSearchURL = $serviceRootURL . 'Web?$format=json&Query=';
$request = $webSearchURL . "%27" . urlencode( "$query" ) . "%27";
$process = curl_init($request);
curl_setopt($process, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($process, CURLOPT_USERPWD, "$accountKey:$accountKey");
curl_setopt($process, CURLOPT_TIMEOUT, 30);
curl_setopt($process, CURLOPT_RETURNTRANSFER, TRUE);
$response = curl_exec($process);
$response = json_decode($response);
echo "<ol>";
foreach( $response->d->results as $result ) {
$url = $result->Url;
$title = $result->Title;
echo "<li><a href='$url'>$title</a></li>";
}
echo "</ol>";
?>
[WTS]はSearchWebをSearchに変更しました。
上記のどれも私にとってはうまくいきませんでした。 MAMPを実行している場合、これは関連する可能性があります。以下を試してください:
$accountKey = '=';
function sitesearch ($query, $site, $accountKey, $count=NULL){
// code from http://go.Microsoft.com/fwlink/?LinkID=248077
$context = stream_context_create(array(
'http' => array(
'request_fulluri' => true,
'header' => "Authorization: Basic " . base64_encode($accountKey . ":" . $accountKey)
)
));
$ServiceRootURL = 'https://api.datamarket.Azure.com/Data.ashx/Bing/Search/v1/News?Market=%27en-GB%27&';
$WebSearchURL = $ServiceRootURL . '$format=json&Query=';
$request = $WebSearchURL . urlencode("'$query'"); // note the extra single quotes
if ($count) $request .= "&\$top=$count"; // note the dollar sign before $top--it's not a variable!
return json_decode(file_get_contents($request, 0, $context), true);
}
$q = "query";
if ($q){
// get search results
$articles = sitesearch ($q, $_SERVER['HTTP_Host'], $accountKey , 100);
foreach($articles['d']['results'] as $article) {
echo " <p>".$article['Title'].'</p>';
echo " <p>".$article['Description'].'</p>';
echo " <p>".$article['Source'].'</p>';
echo " <p>".strtotime($article['Date']).'</p>';
}
}
以下のコードを使用して、bingの検索結果を取得できます。
$acctKey = 'Your account key here';
$rootUri = 'https://api.datamarket.Azure.com/Bing/Search';
$query = 'Kitchen';
$serviceOp ='Image';
$market ='en-us';
$query = urlencode("'$query'");
$market = urlencode("'$market'");
$requestUri = "$rootUri/$serviceOp?\$format=json&Query=$query&Market=$market";
$auth = base64_encode("$acctKey:$acctKey");
$data = array(
'http' => array(
'request_fulluri' => true,
'ignore_errors' => true,
'header' => "Authorization: Basic $auth"
)
);
$context = stream_context_create($data);
$response = file_get_contents($requestUri, 0, $context);
$response=json_decode($response);
echo "<pre>";
print_r($response);
echo "</pre>";
http://www.guguncube.com/2771/python-using-the-bing-search-api
これには、python bingを照会するためのコードが含まれています。これは、最新の新しいAPI(Windows Azure Marketplace)に準拠しています。
# -*- coding: utf-8 -*-
import urllib
import urllib2
import json
def main():
query = "sunshine"
print bing_search(query, 'Web')
print bing_search(query, 'Image')
def bing_search(query, search_type):
#search_type: Web, Image, News, Video
key= 'YOUR_API_KEY'
query = urllib.quote(query)
# create credential for authentication
user_agent = 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; FDM; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322)'
credentials = (':%s' % key).encode('base64')[:-1]
auth = 'Basic %s' % credentials
url = 'https://api.datamarket.Azure.com/Data.ashx/Bing/Search/'+search_type+'?Query=%27'+query+'%27&$top=5&$format=json'
request = urllib2.Request(url)
request.add_header('Authorization', auth)
request.add_header('User-Agent', user_agent)
request_opener = urllib2.build_opener()
response = request_opener.open(request)
response_data = response.read()
json_result = json.loads(response_data)
result_list = json_result['d']['results']
print result_list
return result_list
if __name__ == "__main__":
main()
Search APIの実際の例は、「XXXX」をアクセスキーに置き換えるだけです。 cURLを使用して動作させるためにかなりの時間を費やしましたが、ローカルの "CURLOPT_SSL_VERIFYPEER"のために失敗していました:(-cURL optsが正しく設定されていることを確認してください。
$url = 'https://api.datamarket.Azure.com/Bing/Search/Web?Query=%27xbox%27';
$process = curl_init($url);
curl_setopt($process, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($process, CURLOPT_USERPWD, base64_encode("username:XXXX"));
curl_setopt($process, CURLOPT_TIMEOUT, 30);
curl_setopt($process, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($process, CURLOPT_SSL_VERIFYPEER, false);
$response = curl_exec($process);
# Deliver
return $response;
# Have a great day!
curl_close($process);
これを置くことを忘れないでください:
base64_encode("ignored:".$accountKey)
の代わりに:
base64_encode($accountKey . ":" . $accountKey)
nirest library を使用してBing/Azure APIを呼び出す方法の例を次に示します。
require_once '/path/to/unirest-php/lib/Unirest.php';
$accountKey = "xxx";
$searchResults = Unirest::get("https://api.datamarket.Azure.com/Bing/Search/v1/Composite",
array(),
array(
'Query' => '%27Microsoft%27',
'Sources' => '%27web%2Bimage%2Bvideo%2Bnews%2Bspell%27',
'$format' => 'json',
), $accountKey, $accountKey
);
// Results are here:
$objectArray = $searchResults->body->d->results;
$rawJson = $searchResults->raw_body;
Source
パラメーターは、URLで定義することで省略できます:https://api.datamarket.Azure.com/Bing/Search/v1/Web
or https://api.datamarket.Azure.com/Bing/Search/v1/Image
注:要求URLのパラメーターは大文字と小文字が区別されます。 Bingの場合、大文字で始まります。