|
@@ -1425,6 +1425,17 @@ class APIMgr():
|
|
|
}
|
|
|
response = self.s.post(f"{cfg.target_host}/jyapi/biService/myInfo", headers=header,json=json)
|
|
|
return response
|
|
|
+ #搜索结果数据导出
|
|
|
+ def searchexport(self):
|
|
|
+ hearders = GSTORE['headers']
|
|
|
+ data ={
|
|
|
+ "searchvalue":"软件",
|
|
|
+ "selectIds":"ABCY1xWZC4%2FMD8vM3dzc1w4PiRfTBZmYUFkKD8jJiEgaGdzYFJUCnA%3D"
|
|
|
+ }
|
|
|
+ response = self.s.post(f"{cfg.target_host}/front/wx_dataExport/searchExport", headers=hearders,data=data)
|
|
|
+ return response
|
|
|
+
|
|
|
+
|
|
|
|
|
|
apimgr = APIMgr()
|
|
|
|