|
@@ -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
|
|
@@ -2153,6 +2153,15 @@ class APIMgr():
|
|
}
|
|
}
|
|
response = self.s.post(f"{cfg.target_host}/jyapi/jybx/subscribe/vType/setRead",headers=headers, params=params)
|
|
response = self.s.post(f"{cfg.target_host}/jyapi/jybx/subscribe/vType/setRead",headers=headers, params=params)
|
|
return response
|
|
return response
|
|
|
|
+ # 推送数据浏览状态修改-大会员用户
|
|
|
|
+ def pushdata_setread_mtype(self):
|
|
|
|
+ headers = GSTORE['headers']
|
|
|
|
+ params = {
|
|
|
|
+ "vsid": "4734479853",
|
|
|
|
+ "isEnt": "false"
|
|
|
|
+ }
|
|
|
|
+ response = self.s.post(f"{cfg.target_host}/jyapi/jybx/subscribe/mType/setRead", headers=headers, params=params)
|
|
|
|
+ return response
|
|
|
|
|
|
|
|
|
|
|
|
|