|
@@ -1,8 +1,8 @@
|
|
import json
|
|
import json
|
|
import requests
|
|
import requests
|
|
from hytest.common import *
|
|
from hytest.common import *
|
|
-from pandas.io.formats.style import properties_args
|
|
|
|
-from sympy.physics.vector.printing import params
|
|
|
|
|
|
+#from pandas.io.formats.style import properties_args
|
|
|
|
+#from sympy.physics.vector.printing import params
|
|
|
|
|
|
from cfg import cfg
|
|
from cfg import cfg
|
|
from bs4 import BeautifulSoup
|
|
from bs4 import BeautifulSoup
|
|
@@ -2162,6 +2162,11 @@ class APIMgr():
|
|
}
|
|
}
|
|
response = self.s.post(f"{cfg.target_host}/jyapi/jybx/subscribe/mType/setRead", headers=headers, params=params)
|
|
response = self.s.post(f"{cfg.target_host}/jyapi/jybx/subscribe/mType/setRead", headers=headers, params=params)
|
|
return response
|
|
return response
|
|
|
|
+ #用户订阅相关信息-超级订阅用户(移动端)
|
|
|
|
+ def subscribe_someinfo_vtype(self):
|
|
|
|
+ headers = GSTORE['headers']
|
|
|
|
+ response = self.s.post(f"{cfg.target_host_app}/jyapi/jybx/subscribe/vType/someInfo", headers=headers)
|
|
|
|
+ return response
|
|
|
|
|
|
|
|
|
|
|
|
|