3

我想仅使用原始字符串发送 POST 请求。

我正在写一个解析器。我已经加载了页面,并在 firebug 中看到了一个包含许多标题和正文的复杂请求:

__EVENTTARGET=&__EVENTARGUMENT=&__VIEW.... (11Kb or unreadable text)

我怎样才能再次手动发送这个确切的请求(标​​题+帖子正文)(将其作为一个巨大的字符串传递)?

喜欢:

func("%(headers) \n \n %(body)" % ... )

我希望它由我的脚本发送(并处理响应),并且不想手动制作参数和标题字典。

谢谢你。

4

2 回答 2

7

另一个答案太大而令人困惑,并且显示的内容超出了您的要求。我觉得我应该为未来的读者提供一个更简洁的答案:

import urllib2
import urllib
import urlparse

# this was the header and data strings you already had
headers = 'baz=3&foo=1&bar=2'
data = 'baz=3&foo=1&bar=2'

header_dict = dict(urlparse.parse_qsl(headers))

r = urllib2.Request('http://www.foo.com', data, headers)
resp = urllib2.urlopen(r)

您至少需要将标题解析回字典,但它的工作量很小。然后把它一直传递给一个新的请求。

*注意:这个简洁的示例假设您的标题和数据主体都是application/x-www-form-urlencoded格式的。如果标头采用原始字符串格式,例如Key: Value,请参阅其他答案以获取有关首先解析的更多详细信息。

最终,您不能只是复制粘贴原始文本并运行新请求。它必须以适当的格式分为标题和数据。

于 2012-07-07T16:31:35.703 回答
2
import urllib
import urllib2

# DATA:

# option #1 - using a dictionary
values = {'name': 'Michael Foord', 'location': 'Northampton', 'language': 'Python' }
data = urllib.urlencode(values)

# option #2 - directly as a string
data = 'name=Michael+Foord&language=Python&location=Northampton'

# HEADERS:

# option #1 - convert a bulk of headers to a dictionary (really, don't do this)    

headers = '''
Host: www.http.header.free.fr
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg,
Accept-Language: Fr
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 4.0)
Connection: Keep-Alive
'''

headers = dict([[field.strip() for field in pair.split(':', 1)] for pair in headers.strip().split('\n')])

# option #2 - just use a dictionary

headers = {'Accept': 'image/gif, image/x-xbitmap, image/jpeg, image/pjpeg,',
           'Accept-Encoding': 'gzip, deflate',
           'Accept-Language': 'Fr',
           'Connection': 'Keep-Alive',
           'Host': 'www.http.header.free.fr',
           'User-Agent': 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 4.0)'}

# send the request and receive the response

req = urllib2.Request('http://www.someserver.com/cgi-bin/register.cgi', data, headers)
response = urllib2.urlopen(req)
the_page = response.read()
于 2012-07-07T15:59:05.120 回答