声明
本文章中所有内容仅供学习交流使用,不用于其他任何目的,抓包内容、敏感网址、数据接口等均已做脱敏处理,严禁用于商业用途和非法用途,否则由
此产生的一切后果均与作者无关!
部分python代码
headers = {
"accept": "application/json, text/plain, */*",
"accept-language": "zh-CN,zh;q=0.9",
"cache-control": "no-cache",
"client-version": "3.0.0",
"pragma": "no-cache",
"priority": "u=1, i",
}
url = "/ajax/statuses/buildComments"
params = {
"is_reload": "1",
"id": "5269260293378704",
"is_show_bulletin": "2",
"is_mix": "0",
"count": "20",
"type": "feed",
"uid": "6263891074",
"fetch_level": "0",
"locale": "zh-CN"
}
response = session.get(url, headers=headers, params=params)
print(response.text)
print(response)
结果
