前言
嗨喽,大家好呀~这里是爱看美女的茜茜呐
知识点:
-
动态数据抓包
-
requests发送请求
开发环境:
代码所使用软件工具:
-
python 3.8 >>>>>> 运行代码
-
pycharm 2022.3 >>>>>> 辅助敲代码
需下载的第三方模块:
- requests >>>>>> pip install requests
👇 👇 👇 更多精彩机密、教程,尽在下方,赶紧点击了解吧~
素材、视频教程、完整代码、插件安装教程我都准备好了,直接在文末名片自取就可
代码展示
import requests # 发送请求的第三方模块
import json
请求(request)?
-
请求地址(url)
-
请求方式(request method 99% get/post 请求)
-
请求头(request headers 用户身份信息 浏览器基本信息 请求体的长度 类型等等)
-
请求参数(注意: 在post请求里面叫 请求体 request body 我要给哪个用户/视频点赞 我要看哪个用户的视频 …)
响应(response)?
-
响应头(response headers): 响应体里面存的什么类型的数据 大小是多少
-
响应体(response body): 点赞 点赞成功与否的标识 / 存数据
请求体
json_data = {
"operationName":"visionVideoLike",
"variables":{
"photoId":"3xqgw7yqxhnmcqk",
"photoAuthorId":"3xyesergac4n9zq",
"cancel":0,
"expTag":"1_i/2006006571062823889_xpcwebprofilexxnull0"
},
"query":"mutation visionVideoLike($photoId: String, $photoAuthorId: String, $cancel: Int, $expTag: String) {\n visionVideoLike(photoId: $photoId, photoAuthorId: $photoAuthorId, cancel: $cancel, expTag: $expTag) {\n result\n __typename\n }\n}\n"
}
请求头
content-type: application/json
headers = {
'content-type': 'application/json',
'Referer': 'https://****/short-video/3xqgw7yqxhnmcqk?authorId=3xyesergac4n9zq&streamSource=profile&area=profilexxnull',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36'
}
url = 'https://****/graphql'
# data=
当 content-type: application/json 时
我们如果需要发post请求 requests.post(json={}) / requests.post(data=‘json字符串’)
如果传json json=的这个功能 会把字典数据转为json字符串
如果传data 那么你需要手动将字典转为json字符串
json_str = json.dumps(json_data)
response = requests.post(url=url, headers=headers, data=json_str)
print(response)
print(response.text)
尾语
感谢你观看我的文章呐~本次航班到这里就结束啦 🛬
希望本篇文章有对你带来帮助 🎉,有学习到一点知识~
躲起来的星星🍥也在努力发光,你也要努力加油(让我们一起努力叭)。