嗨,Stackoverflow社区
我试图通过Python 3脚本访问新的Bing认知搜索API。我找到了使用Bing Search 2.0的威胁(自折旧后),但无法识别Python 3中新API的示例。
import urllib.parse
import urllib.request
import json
import base64
def bing_search(query):
key = 'mysubscription_key'
query = urllib.parse.quote(query)
#Create credentials 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)'
encoded = base64.b64encode(bytes(':%s' % key, 'utf-8'))
credentials = encoded[:-1] # the "-1" is to remove the trailing "\n" which encode adds
print(credentials)
auth = 'Basic %s' % credentials
print(auth)
url = 'https://api.cognitive.microsoft.com/bing/v5.0/search?q=' + query + '&mkt=en-us'
print(url)
#Create the API request
urlrequest = urllib.request.urlopen(url) # in Python3 urllib.request(...) becomes urllib.request.open(...)
urlrequest.add_header('Authentication', auth)
urlrequest.add_header('User Agent', user_agent)
request_opener = urllib.request.build_opener()
# Handle the response
response = request_opener.open(urlrequest)
results = json.load(response)
result_list = results['webPages']['values']
print(result_list)
bing_search('good news')
不幸的是,我收到了以下‘访问拒绝’错误。有人能为我指明正确的方向吗?
C:\Users\Admin\AppData\Local\Programs\Python\Python35-32\python.exe C:/Users/Admin/PycharmProjects/momely/placementarchitect/bingtest.py
b'OmZhNTlmNTBlMmFmMjQyZjhhYmE5MTZlNmZkYThhMDM'
Basic b'OmZhNTlmNTBlMmFmMjQyZjhhYmE5MTZlNmZkYThhMDM'
https://api.cognitive.microsoft.com/bing/v5.0/search?q=good%20news&mkt=en-us
Traceback (most recent call last):
File "C:/Users/Admin/PycharmProjects/momely/placementarchitect/bingtest.py", line 34, in <module>
bing_search('good news')
File "C:/Users/Admin/PycharmProjects/momely/placementarchitect/bingtest.py", line 22, in bing_search
urlrequest = urllib.request.urlopen(url) # in Python3 urllib.request(...) becomes urllib.request.open(...)
File "C:\Users\Admin\AppData\Local\Programs\Python\Python35-32\lib\urllib\request.py", line 162, in urlopen
return opener.open(url, data, timeout)
File "C:\Users\Admin\AppData\Local\Programs\Python\Python35-32\lib\urllib\request.py", line 471, in open
response = meth(req, response)
File "C:\Users\Admin\AppData\Local\Programs\Python\Python35-32\lib\urllib\request.py", line 581, in http_response
'http', request, response, code, msg, hdrs)
File "C:\Users\Admin\AppData\Local\Programs\Python\Python35-32\lib\urllib\request.py", line 509, in error
return self._call_chain(*args)
File "C:\Users\Admin\AppData\Local\Programs\Python\Python35-32\lib\urllib\request.py", line 443, in _call_chain
result = func(*args)
File "C:\Users\Admin\AppData\Local\Programs\Python\Python35-32\lib\urllib\request.py", line 589, in http_error_default
raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 401: Access Denied
谢谢您的好意。
发布于 2016-07-01 22:08:59
身份验证不是通过基本身份验证,而是通过自定义头Ocp-Apim-Subscription-Key
进行的。
订阅键,它提供对此API的访问。
可以在您的订阅中找到
参见https://www.microsoft.com/cognitive-services/en-us/bing-web-search-api的详细信息
假设key
变量持有订阅键,则只需使用urlrequest.add_header('Ocp-Apim-Subscription-Key', key)
即可。
作为一个小建议,您的代码可以通过使用python-请求大大简化。最起码的例子可以是:
import requests
def bing_search(query):
url = 'https://api.cognitive.microsoft.com/bing/v5.0/search'
# query string parameters
payload = {'q': query}
# custom headers
headers = {'Ocp-Apim-Subscription-Key': 'xxxxxxxxxxxxx'}
# make GET request
r = requests.get(url, params=payload, headers=headers)
# get JSON response
return r.json()
j = bing_search('good news')
print(j.get('webPages', {}).get('value', {}))
发布于 2016-11-15 09:50:05
您还应该查看Python的py认知包。它是认知服务API的包装器,目前支持网络搜索。我也在寻找反馈/合作者,所以请随时离开一个问题,做公关等。
安装:
pip install py-ms-cognitive
使用:
from py_ms_cognitive import PyMsCognitiveWebSearch
web_bing = PyMsCognitiveWebSearch('api_key', "xbox")
first_fity_results = web_bing.search(limit=50)
second_fity_results = web_bing.search(limit=50)
print second_fifty_results[0].url
https://stackoverflow.com/questions/38156881
复制相似问题