jason 1 년 전
부모
커밋
434125890c
1개의 변경된 파일1개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 6
      APIVisit.java

+ 1 - 6
APIVisit.java

@@ -77,12 +77,7 @@ public class APIVisit {
     public static void visit(String url, String token, String secret, Boolean enc, Map<String, String> param) {
 
         try {
-            String data = "";
-            JSONObject jobj = JSONObject.fromObject(param);
-            data = jobj.toString();
-            if (enc) {
-                 data = AesEcbEncrypt(data, secret);
-            }
+           
             // http 设置和请求
             HttpClient client = HttpClientBuilder.create().build();
             URIBuilder uriBuilder = new URIBuilder(url);