【python】+Http请求

https://blog.csdn.net/weixin_42734407/article/details/81162026

 

http://baijiahao.baidu.com/s?id=1599992188940440730&wfr=spider&for=pc

 

步骤:

================================================================================================================================
python发送http请求
================================================================================================================================
step1:请求头构建
1、cookie
2、ctoken
3、authorization
4、header(汇总字典类型 包含Authorization、Cookie、Referer)

 

step2:请求参数准备
1、param(字典类型)

 

step3:发送请求
1、requests.post(url, param, headers=header)
================================================================================================================================

 

踩坑

1、
content-type:application/x-www-form-urlencoded
result = requests.post(url, headers=headers, data=params_dict) # 字段为data

2、
content-type:application/json
result = requests.post(url, headers=headers, json=params_dict) # 字段为json

 

posted @ 2019-09-17 23:30  淡怀  阅读(264)  评论(0编辑  收藏  举报