声明
本文章中所有内容仅供学习交流使用,不用于其他任何目的,抓包内容、敏感网址、数据接口 等均已做脱敏处理,严禁用于商业用途和非法用途,否则由此产生的一切后果均与作者无关!
有相关问题请第一时间点击头像看简介或私信联系我删除博客!
部分python 代码
hexin_v = cp.call('getHexin_V')
print(hexin_v)
headers['hexin-v'] = hexin_v
url = "user_center/open/api/content/v2/get_by_uid"
data = {
"user_code": ""
}
data = json.dumps(data, separators=(',', ':'))
response = requests.post(url, headers=headers, cookies={}, data=data)
print(response.text)
print(response)