|
@@ -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);
|
|
|
}
|
|
|
|