bing検索からURLを取得するコードを作成しました。上記のエラーが発生します。
import urllib
import urllib2
accountKey = 'mykey'
username =accountKey
queryBingFor = "'JohnDalton'"
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()
username = authKey を作成しました。誰かが私に言ったように、両方で同じでなければなりません。とにかく、bing のウェブマスター アカウントを作成したときに、ユーザー名を取得できませんでした。それとも私のメールだけですか?私が初心者の間違いを犯した場合は、すみません。Pythonを始めたばかりです。