qirong
2023-11-22 d6ef89e201c6ec2ff1f33db78f0833855a6785f2
ruoyi-modules/ruoyi-system/src/main/java/org/dromara/system/uitil/HttpUtils.java
@@ -148,12 +148,12 @@
    /**
     * 删除同步
     * @param url
     * @param parameter
//     * @param parameter
     * @throws Exception
     */
    public static void sendDeleteRequest(String url, String parameter, String password) throws Exception {
    public static void sendDeleteRequest(String url, String parameter) throws Exception {
        // 拼接URL和参数
        String deleteUrl = url + "/" + parameter + "/" + password;
        String deleteUrl = url + "/" + parameter;
        // 创建URL对象和HttpURLConnection对象
        URL obj = new URL(deleteUrl);