9

我在 python 中使用 urllib2 和 urllib 库

假设我有以下代码

import urllib2
import urllib

url = 'http://ah.example.com'
half_url = u'/servlet/av/jd?ai=782&ji=2624743&sn=I'

req = urllib2.Request(url, half_url.encode('utf-8'))
response = urllib2.urlopen(req)
print response

当我运行上面的代码时,我收到以下错误

Traceback (most recent call last):
  File "example.py", line 39, in <module>
    response = urllib2.urlopen(req)
  File "/usr/lib64/python2.7/urllib2.py", line 126, in urlopen
    return _opener.open(url, data, timeout)
  File "/usr/lib64/python2.7/urllib2.py", line 398, in open
    response = meth(req, response)
  File "/usr/lib64/python2.7/urllib2.py", line 511, in http_response
    'http', request, response, code, msg, hdrs)
  File "/usr/lib64/python2.7/urllib2.py", line 436, in error
    return self._call_chain(*args)
  File "/usr/lib64/python2.7/urllib2.py", line 370, in _call_chain
    result = func(*args)
  File "/usr/lib64/python2.7/urllib2.py", line 519, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
urllib2.HTTPError: HTTP Error 405: Method Not Allowed

谁能让我知道这里发生了什么以及为什么它不起作用

提前致谢............

4

2 回答 2

17

您正在调用的服务器告诉您,您尝试调用的 URL 不允许使用 POST 方法。

通过将 URL 的路径部分作为Request对象数据参数传递,您可以将其设为 POST 而不是 GET。

我怀疑你想发送一个 GET 请求:

req = urllib2.Request(url + half_url.encode('utf-8'))
于 2012-07-12T13:41:58.847 回答
0

我得到它是因为 Python 3.7 fromppa:deadsnakes 不支持Ubuntu Trusty 包中的 SSL。“解决方案”是降级到 Python 3.6。

于 2020-03-05T11:21:38.597 回答