Tôi có một đoạn mã như thế nàyurllib2 Lỗi HTTP 400: Bad Request
host = 'http://www.bing.com/search?q=%s&go=&qs=n&sk=&sc=8-13&first=%s' % (query, page)
req = urllib2.Request(host)
req.add_header('User-Agent', User_Agent)
response = urllib2.urlopen(req)
và khi tôi nhập vào một truy vấn lớn hơn một từ như "con chó" tôi nhận được lỗi sau.
response = urllib2.urlopen(req)
File "/usr/lib/python2.7/urllib2.py", line 126, in urlopen
return _opener.open(url, data, timeout)
File "/usr/lib/python2.7/urllib2.py", line 400, in open
response = meth(req, response)
File "/usr/lib/python2.7/urllib2.py", line 513, in http_response
'http', request, response, code, msg, hdrs)
File "/usr/lib/python2.7/urllib2.py", line 438, in error
return self._call_chain(*args)
File "/usr/lib/python2.7/urllib2.py", line 372, in _call_chain
result = func(*args)
File "/usr/lib/python2.7/urllib2.py", line 521, in http_error_default
raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
urllib2.HTTPError: HTTP Error 400: Bad Request
Bất kỳ ai có thể chỉ ra những gì tôi đang làm sai? Cảm ơn trước.
Tôi cũng đã nhận được "urllib2.HTTPError: Lỗi HTTP 406: Không thể chấp nhận" khi cố yêu cầu URL có khoảng trắng. – jamesc