python 登录并获取session,使用session新增ecshop的草稿

Posted 星空6

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 登录并获取session,使用session新增ecshop的草稿相关的知识,希望对你有一定的参考价值。

 

import requests
header={"User-Agent": "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"}
data={"username":"fuhui","password":"P@ssw0rd","act":"act_login",
"back_act":"./index.php"}
s=requests.session()
a=s.post("http://localhost/ECshop_v3.6.0/ecshop/user.php",data=data,headers=header)
data1={"country":1,"province":10,"city":109,"district":1222,"consignee":"冬天","email":"12345@qq.com",
"address":"喜欢","tel":"13323457890","submit":"新增收货地址","act":"act_edit_address"}
b=s.post("http://localhost/ECshop_v3.6.0/ecshop/user.php",data=data1,headers=header)
print(b.text)

以上是关于python 登录并获取session,使用session新增ecshop的草稿的主要内容,如果未能解决你的问题,请参考以下文章

asp.net怎么利用session对象使用户在登录页面实现登录之后,然后首页显示用户名

PHP 登录和 $_SESSION

Python3+Selenium获取session和token供Requests使用教程

8Django实战第8天:session和cookie自动登录机制

完成登录功能,用session记住用户名

完成登录功能,用session记住用户名