# -*- coding: utf-8 -*- # Author : Charley # Python : 3.10.8 # Date : 2025/11/11 16:16 import json import requests # from fsz_reward_spider import headers def get_login(): headers = { "authority": "kurabu.feishezhang.com", "accept": "*/*", "accept-language": "zh-CN,zh;q=0.9", "content-type": "application/json", "referer": "https://servicewechat.com/wxa5880b2d8e8a0f37/17/page-frame.html", "sec-fetch-dest": "empty", "sec-fetch-mode": "cors", "sec-fetch-site": "cross-site", "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 MicroMessenger/7.0.20.1781(0x6700143B) NetType/WIFI MiniProgramEnv/Windows WindowsWechat/WMPF WindowsWechat(0x63090c33) XWEB/9129", "xweb_xhr": "1" } url = "https://kurabu.feishezhang.com/api.php" params = { "s": "user/appminiuserauth", "system_type": "default", "application": "app", "application_client_type": "weixin", "token": "", "uuid": "fc667264-7422-42ba-8c97-a2e8f5cad36e", "ajax": "ajax" } data = { "authcode": "0d3xOMFa1WImDK0eg3Ha19rcI40xOMFt", "referrer": 0 } data = json.dumps(data, separators=(',', ':')) response = requests.post(url, headers=headers, params=params, data=data) print(response.text) print(response) """ 224b5eda176f2798e3e2daf5d682503f 1645f2d0f8667f438655266129c26538 ab4ebc28f5aead84a97308ffd48fb9c9 """ if __name__ == '__main__': get_login()