|
@@ -1978,6 +1978,15 @@ class APIMgr():
|
|
|
response = self.s.post(f"{cfg.target_host}/jyapi/jybx/subscribe/getUser", headers=headers, json=json)
|
|
|
return response
|
|
|
|
|
|
+ """推送设置获取"""
|
|
|
+ def push_settings(self):
|
|
|
+ headers = GSTORE['headers']
|
|
|
+ params = {
|
|
|
+ "t": "1752489527091"
|
|
|
+ }
|
|
|
+ response = self.s.post(f"{cfg.target_host}/jyapi/jybx/subscribe/getPushSet", headers=headers, params=params)
|
|
|
+ return response
|
|
|
+
|
|
|
apimgr = APIMgr()
|
|
|
|
|
|
|