Browse Source

删除原获取验证码的接口

lirong 3 years ago
parent
commit
04418c194d

+ 0 - 7
ibms-data-sdk/src/main/java/com/persagy/ibms/data/sdk/service/rest/RestApi.java

@@ -138,11 +138,4 @@ public class RestApi {
 		String result = RestUtil.login(param);
 		return result;
 	}
-
-	// 获取验证码
-	@PostMapping(path = { "/getCaptcha", "/zkt-sdk/getCaptcha" }, produces = "application/json;charset=UTF-8")
-	public String getCaptcha(@RequestBody String param, HttpServletRequest request) {
-		String result = RestUtil.getCaptcha();
-		return result;
-	}
 }

+ 0 - 19
ibms-data-sdk/src/main/java/com/persagy/ibms/data/sdk/service/rest/RestUtil.java

@@ -504,23 +504,4 @@ public class RestUtil {
 		}
 		return result.toJSONString();
 	}
-
-	// 获取验证码
-	public static String getCaptcha() {
-		JSONObject result = new JSONObject();
-		try {
-			Tuple object = PersonUtil.getCaptcha();
-			result.put("Content", object);
-			result.put("Result", "success");
-		} catch (Exception e) {
-			log.error(e.getMessage(), e);
-			String message = LogUtil.GetExceptionStackTrace(e);
-			log.error(message);
-			result.put("Result", "failure");
-			result.put("ResultMsg", message);
-			result.put("ResultCode", 250);
-		}
-		return result.toJSONString();
-
-	}
 }

+ 0 - 7
ibms-data-sdk/src/main/java/com/persagy/ibms/data/sdk/util/PersonUtil.java

@@ -19,11 +19,4 @@ public class PersonUtil {
         String post_result = HttpClientUtil.instance("person_center").post(Constant.person_center_url + "/user/login", queryCriteria.toJSONString());
         return post_result;
     }
-
-    public static Tuple getCaptcha() throws Exception {
-        JSONObject queryCriteria=new JSONObject();
-        Tuple post_result = HttpClientUtil.instance("person_center").postImg(Constant.person_center_url + "/user/getCaptcha",queryCriteria.toJSONString(),300000, null);
-//        JSONObject resultJSON = JSON.parseObject(post_result).getJSONObject("content");
-        return post_result;
-    }
 }