如何使用python创建一个发送多个cookie头的http客户端

时间:2014-01-22 14:31:30

标签: python http cookies http-headers

我尝试了以下代码:

HEADERS = {'User-Agent': 'foo',
           'Content-Type': 'text/xml',
           'Accept': 'text/html',
           'Cookie': 'cookie_1=blah',
           'Cookie': cookie_2=haha',
           'Connection': 'keep-alive'}

然后使用

conn = http.client.HTTPConnection(host)
conn.request('GET', path, headers=headers)

发送请求。

但是在请求标题中,我只有'Cookie:cookie_2 = haha​​'

如何让客户端发送如下内容:

Cookie: cookie_1=blah\r\n
Cookie: cookie_2=haha\r\n

这可能在python中吗?感谢。

0 个答案:

没有答案