我尝试了以下代码:
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中吗?感谢。