|
@@ -1155,6 +1155,15 @@ class APIMgr():
|
|
|
response = self.s.post(f"{cfg.target_host}/free/setKeepLogin",headers = headers ,data = data)
|
|
|
return response
|
|
|
|
|
|
+ #发送邮箱验证码
|
|
|
+ def send_mailverify(self):
|
|
|
+ headers = GSTORE["headers"]
|
|
|
+ data = {
|
|
|
+ "email" : "luwenna@topnet.net.cn"
|
|
|
+ }
|
|
|
+ response = self.s.post(f"{cfg.target_host}/front/dataExport/sendMailVerify",headers = headers , data = data)
|
|
|
+ return response
|
|
|
+
|
|
|
apimgr = APIMgr()
|
|
|
|
|
|
|