欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python获取服务器响应cookie的实例

程序员文章站 2022-07-06 12:01:53
总结 调试网站获取cookies时请查看,r.header和r.request.header这两个属性,因为cookie说不准出现在他们俩谁里面。 先贴一个代码...

总结

调试网站获取cookies时请查看,r.header和r.request.header这两个属性,因为cookie说不准出现在他们俩谁里面。

先贴一个代码

import re
import requests
from bs4 import beautifulsoup
def printheaders(headers):
 for h in headers:
 print(h+" : "+headers[h] + '\r\n')

def printcookies(cookies):
 for h in cookies:
 print(h+" : "+cookies[h] + '\r\n')

def loginfw(id,password):
 url = "http://xxxxx/login.asp" 
 try:
 headers = {'user-agent': 'mozilla/5.0 (windows nt 10.0; wow64; rv:55.0) gecko/20100101 firefox/55.0',
   'host':'www.xxx.org',
   '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',
   'accept-encoding':'gzip, deflate',
   'content-type':'application/x-www-form-urlencoded',
   'referer':'http://xxx/login.asp',
   'connection':'keep-alive',
   }
 params = {"reglname":id,"reglpassword":password}
 r = requests.post(url,data=params,headers=headers)
 printheaders(r.request.headers) #服务器返回的cookie需要用r.request里的headers来获取
 printheaders(r.headers) #这里是获取不到服务器返回的cookie的

 r.encoding = 'utf-8'

 return r.text
 except exception as e:
 print("登陆错误:"+str(e))




ret = loginfw("xxx@qq.com","xxx")
#print(ret)

事情经过

事情的发生是这样的,今天我在调试一个网站的模拟登陆,但是怎么调试都调试不出来这个网站返回的cookie(因为我是用r.headers来获取cookies的),后来我就在想是不是我的请求头没有设置正确,然后我就遍历了r.request.headers,然后这个变量如实的打印了我的请求头的信息,但是我仔细一看cookie怎么出现了变化,咦,这不就是我需要的响应cookie吗!

难道是我对r.request这个对象的理解出错了吗?以前我一直认为这个对象里面存储的是我请求发出去的信息,现在怎么会出现响应cookie呢?

就在我百撕不得其解的时候,我去翻阅了requests库的官方文档关于respond对象中包含的request的解释,它上面写着“the preparedrequest object to which this is a response.”(表示看不到什么意思,百度翻译也翻译不清楚),咦,好像是和响应有关啊,看来应该是我的理解出现了错误。

更好的解决方案

那当然是用requests提供的"会话对象",他能够自动的保留请求所获取的参数。

具体请跳转传送门:

http://cn.python-requests.org/zh_cn/latest/user/advanced.html#request-and-response-objects

后来

后来我发现原来是因为我在请求头里面写了“host”,“referer”,导致cookie出现异常的原因,所以以后不要随便写这两个参数了,要写就照着封包里的写。

以上这篇python获取服务器响应cookie的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。