|
@@ -76,4 +76,12 @@ class APIMgr():
|
|
|
s = GSTORE['s']
|
|
|
s.post(url=url, headers=headers)
|
|
|
|
|
|
+ """我的用户信息"""
|
|
|
+ def myuser_information(self):
|
|
|
+ hearders = GSTORE['headers']
|
|
|
+ s = GSTORE['s']
|
|
|
+ response = s.post(f"{cfg.target_host_wxapi}/debrisproduct/myinfo", headers=hearders)
|
|
|
+ return response
|
|
|
+
|
|
|
+
|
|
|
apimgr = APIMgr()
|