总结
调试网站获取cookies时请查看,r.header和r.request.header这两个属性,因为cookie说不准出现在他们俩谁里面。
先贴一个代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
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.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的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/a735311619/article/details/78093738