您的位置:首页 > 编程语言 > Python开发

python操作cookie ,curl请求

2017-05-23 14:15 239 查看
Python实现登陆后产生的cookie请求

import cookielib
import urllib2
import urllib

c = cookielib.LWPCookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(c))
login_path = "urllogin"
data = {"username":"******", "password":"******","isEncypted":"false"}
post_info = urllib.urlencode(data)
request = urllib2.Request(login_path, post_info)

html = opener.open(request)
for item in c:
print item.name
print item.value
handerl = urllib2.HTTPCookieProcessor(c)
opener = urllib2.build_opener(handerl)
res = opener.open('url')
print res.read()


curl利用cookie请求

#http请求可以查到数据
curl -s --header "Content-Type:application/x-www-form-urlencoded; charset=UTF-8" -O -c cookie -d "username=******&password=******&isEncypted=false" url
curl -s --header "Content-Type:application/json; Accept-Encoding:'zip, deflate'; Accept-Language:'zh-CN,zh;q=0.8';X-Requested-With:XMLHttpRequest" -b cookie -X GET "url"


curl利用cookie实现restful 请求

curl -s --header "Content-Type:application/x-www-form-urlencoded; charset=UTF-8" -O -c cookie -d "username=******&password=******&isEncypted=false" url
curl -b cookie -X GET url
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python cookie curl