python – urllib2.HTTPError:使用新的Bing API查询时的HTTP错误401(在azure marketplace中)
作者:互联网
所以,我已根据堆栈溢出的同一屋檐下的大部分答案进行了更正,我仍然无法解决这个问题.
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
关于问题可能是什么的任何线索?
谢谢!
解决方法:
所以,这是工作代码.我创建的问题是查询关键字的格式.
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.
标签:python,authentication,urllib2,http-status-code-401,bing-api 来源: https://codeday.me/bug/20190630/1332434.html