- 帖子
- 2
- 精华
- 0
- 积分
- 17
- 阅读权限
- 10
- 注册时间
- 2017-10-8
- 最后登录
- 2017-10-15
|
import requests
header={'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:56.0) Gecko/20100101 Firefox/56.0','Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8','Accept-Language': 'zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3','Content-Type': 'application/x-www-form-urlencoded','Referer': 'https://user.ichunqiu.com/login?r=https%3A%2F%2Fwww.ichunqiu.com%2F'}
postdata={'username':'xxxx','password':'xxxx','yzm':''}
s=requests.Session()
res=s.post('https://user.ichunqiu.com/login/signin',headers=header,data=postdata)
print res.text
想用requests.session来模拟登录i春秋,但是res.text返回的就是https://user.ichunqiu.com/login/这个登录页面的内容,并没有登录成功跳转至https://www.ichunqiu.com页面,请求过程中有302跳转,但是自己理解的是requests是会主动跟随跳转,而且requests.session可以保存Cookie信息,不知道哪里有问题,希望各位帮忙解惑
|
|