我想以编程方式执行对微软Bing搜索引擎的搜索。
这是我的理解:
- 有一个Bing搜索API 2.0,将尽快更换(2012年8月1日)
- 新的API被称为Windows Azure的市场。
- 您可以使用两个不同的URL。
在旧的API(Bing搜索API 2.0),你在URL中指定的键(应用程序ID),这种密钥将被用于验证请求。 只要你有钥匙作为URL参数,就可以得到结果。
在新的API(Windows Azure的市场),不包含在URL中键(帐户密码)。 取而代之的是,你把一个查询网址,那么服务器会要求你的凭证。 当使用浏览器,会出现一个弹出窗口,询问其A / C名称和密码。 指令是离开的帐户名称空白,并插入在密码字段中输入您的关键。
好吧,我已经做了这一切,我可以在我的浏览器页面上看到我的搜索的JSON格式的结果。
我如何在PHP编程方式做到这一点? 我试图寻找从微软MSDN库中的文档和示例代码,但是我在错误的地方要么搜索,或者有极其有限的资源在那里。
会有人能告诉我你是怎么做到的PHP中的一部分“在弹出窗口中输入密码字段中输入密钥”吗?
非常感谢提前。
Answer 1:
新服务的文档可以得到一点有趣的 - 尤其是在MSDN的兔养兔场。 最清晰的解释我能找到的是在迁移指南从这个Bing搜索API页面。 最重要的迁移指南中有接近尾声PHP一个不错的简单的例子。
编辑:好的,迁移指南是一个起点,但它不是最好的例子。 这里有两个对我来说(无代理,防火墙等干扰)工作方法:
使用的file_get_contents
注:“ 于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搜索。
Answer 2:
以上都不是为我工作。 进出口运行甲基苯丙胺,这可能是相关的。 试试下面的:
$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>';
}
}
FROM: http://bililite.com/blog/2012/06/05/new-bing-api/
Answer 3:
你可以用波纹管代码来获取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>";
Answer 4:
http://www.guguncube.com/2771/python-using-the-bing-search-api
它包含了Python代码来查询Bing和这是根据最新的API(Windows Azure的市场)
# -*- 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()
Answer 5:
不要忘记把这个:
base64_encode("ignored:".$accountKey)
代替:
base64_encode($accountKey . ":" . $accountKey)
Answer 6:
下面是搜索API的工作示例只是替换“XXXX”与您的访问密钥。 即使我浪费了好几个小时的努力得到它使用卷曲的工作,但它是在本地:(失败,因为“CURLOPT_SSL_VERIFYPEER” - 所以一定要确保你的卷曲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);
Answer 7:
下面是如何使用调用兵/ Azure的API的例子Unirest库 。
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
或https://api.datamarket.azure.com/Bing/Search/v1/Image
注:在请求的URL参数是区分大小写的。 对于Bing他们开始一个大写字母。
文章来源: Bing search API and Azure