首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

请教怎么Request文件头headers

2012-09-11 
请问如何Request文件头headers?Python codean_urlhttp://www.test.comheaders{Content-Type:applic

请问如何Request文件头headers?

Python code
an_url="http://www.test.com"headers={"Content-Type":"application/x-www-form-urlencoded","Cookies":"cookie"}post_data=urllib.urlencode({'id':'xxx','pwd':'xxx'})re_checkin=urllib2.Request(an_url,post_data)

这样只能Request那个post_data,请问如何一同POST文件头headers?

[解决办法]
Python code
urllib2.Request(an_url,post_data,headers)
[解决办法]
class urllib2.Request(url[, data][, headers][, origin_req_host][, unverifiable]) 
========================================================
an_url="http://www.test.com"
headers={"Content-Type":"application/x-www-form-urlencoded","Cookies":"cookie"}
post_data=urllib.urlencode({'id':'xxx','pwd':'xxx'})
re_checkin=urllib2.Request(url=an_url,data=post_data,headers=headers)

热点排行