urllib2.HTTPError:使用新Bing API查询时的HTTP错误401(在azure marketplace中)

时间:2012-07-30 19:29:23

标签: python authentication urllib2 http-status-code-401 bing-api

所以,我根据堆栈溢出的同一屋檐下的大多数答案进行了更正,我仍然无法解决这个问题。

queryBingFor = "Google Fibre"
quoted_query = urllib.quote(queryBingFor)
account_key = "dslfkslkdfhsehwekhrwkj2187iwekjfkwej3"

rootURL = "https://api.datamarket.azure.com/Bing/Search/v1/"
searchURL = rootURL + "Image?format=json&Query=" + quoted_query
cred = base64.encodestring(accountKey)

reqBing = urllib2.Request(url=searchURL)
author = "Basic %s" % cred
reqBing.add_header('Authorization',author)

readURL = urllib2.urlopen(reqBing)

我知道我错过了上面代码中的内容,这给了我一个:

urllib2.HTTPError: HTTP Error 401: The authorization type you provided is not supported.  Only Basic and OAuth are supported

有关问题可能是什么的任何线索?

谢谢!

1 个答案:

答案 0 :(得分:3)

所以,这是工作代码。我创建的问题是查询关键字的格式。

 queryBingFor = "'google fibre'" # the apostrophe's required as that is the format the API Url expects. 
 quoted_query = urllib.quote(queryBingFor)

 rootURL = "https://api.datamarket.azure.com/Bing/Search/"
 searchURL = rootURL + "Image?$format=json&Query=" + quoted_query

 password_mgr = urllib2.HTTPPasswordMgrWithDefaultRealm()
 password_mgr.add_password(None, searchURL,username,accountKey)

 handler = urllib2.HTTPBasicAuthHandler(password_mgr)
 opener = urllib2.build_opener(handler)
 urllib2.install_opener(opener)
 readURL = urllib2.urlopen(searchURL).read()

这应该以相应的JSON格式给出结果。我假设,当我使用urllib2的httpbasicauthhandler时,密码被隐式转换为base64。