3

我正在测试一些应用程序,我在其中发送一些 POST 请求,想要在请求中缺少某些标头时测试应用程序的行为,以验证它是否生成了正确的错误代码。

为此,我的代码如下。

    header = {'Content-type': 'application/json'}
    data = "hello world"
    request = urllib2.Request(url, data, header)
    f = urllib2.urlopen(request)
    response = f.read()

问题是 urllib2 在发送 POST 请求时添加了它自己的标头,例如 Content-Length、Accept-Encoding,但我不希望 urllib2 添加比我在上面的标头字典中指定的标头更多的标头,有没有办法为此,我尝试将其他我不想要的标头设置为无,但它们仍然将这些空值作为我不想要的请求的一部分。

4

1 回答 1

0

标头采用字典类型,下面的示例使用 chrome 用户代理。对于所有标准和一些非搁置的标头字段,请查看此处。您还需要使用 urllib 而不是 urllib2 对数据进行编码。这在此处的 python 文档中都有提及

import urllib
import urllib2

url = 'http://www.someserver.com/cgi-bin/register.cgi'
user_agent = 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/22.0.1207.1 Safari/537.1'
values = {'name' : 'Michael Foord',
          'location' : 'Northampton',
          'language' : 'Python' }
headers = { 'User-Agent' : user_agent }

data = urllib.urlencode(values)
req = urllib2.Request(url, data, headers)
response = urllib2.urlopen(req)
the_page = response.read()
于 2012-09-12T10:58:42.100 回答