沃畅游

This commit is contained in:
xiaoge
2023-05-13 00:22:59 +08:00
parent d6f8ff0865
commit 5e8b3fc375

16
wochangyou2.py Normal file
View File

@@ -0,0 +1,16 @@
#cron: 0 0/15 * * * *
#const $ = new Env("沃畅游");
#妖火
import requests
import json
url = 'https://game.wostore.cn/api/app/user/v2/qos/start'
headers = {
'authorization': 'eyJhbGciOiJIUzUxMiJ9.eyJ1c2VyX2lkIjo4Mjc2MzY0NjIyOTY0NjU0MDgsInVzZXJfa2V5IjoiMTkzMzJlYjMtZTRhNy00ZmVjLTllN2EtZjdhOTg2MDE3NThlIiwidXNlcm5hbWUiOiJsKuaYjiJ9.AG5aZAC7q8QRDE2FJZrZylaGSS1fJeb9Phgz4bl2LUHCNB2wfW-jZpsAmmAJ3DLZDFbsWghWV8SPxV9Kf8z_tQ',
'content-type': 'application/json'
}
body = {"channelId": "90002", "privateIp": "10.1.10.1"}
response = requests.post(url, headers=headers, data=json.dumps(body))
print(response.text)