Bing API错误:没有给出主机

时间:2018-04-17 19:18:05

标签: django python-3.x bing-api

我在尝试从Bing加载搜索结果时遇到问题。我试过找一个解决方案,但我无法弄清楚要做什么。 我在我的代码段中使用#api key here隐藏了我的API密钥,但它应该是正确的。

这是我的代码段:

import json
import urllib.request, urllib.parse, urllib.error
import urllib.request, urllib.error, urllib.parse

def run_query(search_terms):
    # Specify the base
    root_url = "https:a//pi.cognitive.microsoft.com/bing/v7.0/search"
    source = 'Web'

# Specify how many results we wish to be returned per page.
# Offset specifies where in the results list to start from.
# With results_per_page = 10 and offset = 11, this would start from page 2.
results_per_page = 10
offset = 0

# Wrap quotes around our query terms as required by the Bing API.
# The query we will then use is stored within variable query.
query = "'{0}'".format(search_terms)
query = urllib.parse.quote(query)

# Construct the latter part of our request's URL.
# Sets the format of the response to JSON and sets other properties.
search_url = "{0}{1}?$format=json&$top={2}&$skip={3}&Query={4}".format(
    root_url,
    source,
    results_per_page,
    offset,
    query)

# Setup authentication with the Bing servers.
# The username MUST be a blank string, and put in your API key!
username = ''
bing_api_key = #api key here

# Create a 'password manager' which handles authentication for us.
password_mgr = urllib.request.HTTPPasswordMgrWithDefaultRealm()
password_mgr.add_password(None, search_url, username, bing_api_key)

# Create our results list which we'll populate.
results = []

try:
    # Prepare for connecting to Bing's servers.
    handler = urllib.request.HTTPBasicAuthHandler(password_mgr)
    opener = urllib.request.build_opener(handler)
    urllib.request.install_opener(opener)

    # Connect to the server and read the response generated.
    response = urllib.request.urlopen(search_url).read()

    # Convert the string response to a Python dictionary object.
    json_response = json.loads(response)

    # Loop through each page returned, populating out results list.
    for result in json_response['d']['results']:
        results.append({
            'title': result['Title'],
            'link': result['Url'],
            'summary': result['Description']})

# Catch a URLError exception - something went wrong when connecting!
except Exception as e:
    print(("Error when querying the Bing API: ", e))

# Return the list of results to the calling function.
return results

错误是:('Error when querying the Bing API: ', URLError('no host given'))

1 个答案:

答案 0 :(得分:1)

根网址中存在拼写错误。它应为:https://api.cognitive.microsoft.com/bing/v7.0/search