|
@@ -370,6 +370,15 @@ class APIMgr():
|
|
|
s = GSTORE['s']
|
|
|
response = s.get(f"{cfg.target_host}/jypay/user/getAccountInfo", headers=headers)
|
|
|
return response
|
|
|
+ #密码校验
|
|
|
+ def Check_password(self):
|
|
|
+ headers = GSTORE['headers']
|
|
|
+ s = GSTORE['s']
|
|
|
+ params = {
|
|
|
+ "password": "123456"
|
|
|
+ }
|
|
|
+ response = s.post(f"{cfg.target_host}/publicapply/password/check", headers=headers, params=params)
|
|
|
+ return response
|
|
|
apimgr = APIMgr()
|
|
|
|
|
|
|