andy 1 年間 前
コミット
dad89a80b0

+ 1 - 3
src/main/java/com/scbfkj/uni/library/script/HttpScriptUtil.java

@@ -23,15 +23,13 @@ public class HttpScriptUtil {
                 connection.put("headers",data.get("headers"));
             }
             if(data.containsKey("body")){
-                connection.put("headers",data.get("headers"));
+                connection.put("body",data.get("body"));
             }
                 connection.put("method",data.get("method"));
 
         return new Web().execWebApi(connection.get("headers"), connection.getOrDefault("method", "post").toString(), connection.get("body"), DataFormatUtil.toString(connection));
     }
     public static Map<String, Object> exec(Object header, String method, Object defaultBody, String url) throws Exception {
-
-
         return new Web().execWebApi(header, method, defaultBody, url);
     }