使用urllib
或urllib2
是否可以使用POST
请求不发送数据?听起来很奇怪,但我使用的API会在POST
请求中发送空白数据。
我尝试过以下操作,但似乎是因为没有GET
数据而发出POST
请求。
url = 'https://site.com/registerclaim?cid=' + int(cid)
values = {}
headers = {
'User-Agent' : 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36',
'X-CRFS-Token' : csrfToken,
'X-Requested-With' : 'XMLHttpRequest'
}
data = urllib.urlencode(values)
req = urllib2.Request(url, data, headers)
resp = opener.open(req)
我收到了404异常,如果尝试通过'GET'请求访问该页面,则会返回API。我检查了所有变量以确保它们设置正确,它们是。
我建议吗?
答案 0 :(得分:1)
您的诊断不正确; urllib2
将在您的案例中发送一个空的POST正文:
>>> import urllib, urllib2
>>> url = 'http://httpbin.org/post?cid=42'
>>> headers = {
... 'User-Agent' : 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36',
... 'X-CRFS-Token': 'csrf_token_mocked',
... 'X-Requested-With' : 'XMLHttpRequest'
... }
>>> values = {}
>>> data = urllib.urlencode(values)
>>> req = urllib2.Request(url, data, headers)
>>> req.has_data()
True
>>> req.get_method()
'POST'
>>> resp = urllib2.urlopen(req)
>>> body = resp.read()
>>> print body
{"args": {"cid": "42"}, "data": "", "files": {}, "form": {}, "headers": {"Accept-Encoding": "identity", "Connection": "close", "Content-Length": "0", "Content-Type": "application/x-www-form-urlencoded", "Host": "httpbin.org", "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36", "X-Crfs-Token": "csrf_token_mocked", "X-Request-Id": "a14f84f5-a355-4b8a-8b34-cb42808b8b09", "X-Requested-With": "XMLHttpRequest"}, "json": null, "origin": "81.134.152.4", "url": "http://httpbin.org/post?cid=42"}
>>> from pprint import pprint
>>> import json
>>> pprint(json.loads(body))
{u'args': {u'cid': u'42'},
u'data': u'',
u'files': {},
u'form': {},
u'headers': {u'Accept-Encoding': u'identity',
u'Connection': u'close',
u'Content-Length': u'0',
u'Content-Type': u'application/x-www-form-urlencoded',
u'Host': u'httpbin.org',
u'User-Agent': u'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36',
u'X-Crfs-Token': u'csrf_token_mocked',
u'X-Request-Id': u'a14f84f5-a355-4b8a-8b34-cb42808b8b09',
u'X-Requested-With': u'XMLHttpRequest'},
u'json': None,
u'origin': u'81.134.152.4',
u'url': u'http://httpbin.org/post?cid=42'}
有些注意事项:
req.get_method()
方法用于确定发送请求时使用的方法;即使POST
为空,您也可以看到它会使用values
。 req.get_method()
确定基于req.has_data()
响应使用的方法, 方法在True
属性不是data
时返回None
。空字符串在此限定为具有数据。那么问题就是:你有多少确定你拥有POST成功所需的一切?也许需要一个Referer
标头,或者你可能误解了传入了什么参数,并且POST主体而不是意味着是空的。