|
@@ -1164,6 +1164,15 @@ class APIMgr():
|
|
|
response = self.s.post(f"{cfg.target_host}/front/dataExport/sendMailVerify",headers = headers , data = data)
|
|
|
return response
|
|
|
|
|
|
+ #验证数据导出邮箱验证码
|
|
|
+ def check_mailverify(self):
|
|
|
+ headers = GSTORE["headers"]
|
|
|
+ data = {
|
|
|
+ "emailVerity" : "YQ09Z1",
|
|
|
+ "email" : "luwenna@topnet.net.cn"
|
|
|
+ }
|
|
|
+ response = self.s.post(f"{cfg.target_host}/front/dataExport/checkMailVerify", headers = headers ,data = data)
|
|
|
+ return response
|
|
|
apimgr = APIMgr()
|
|
|
|
|
|
|