Browse Source

解决银海对接报错问题

hanzhengyi 1 month ago
parent
commit
b2101abb30

+ 1 - 1
service-agbox/service-agbox-biz/src/main/java/com/usky/agbox/service/util/HttpClientUtils.java

@@ -77,7 +77,7 @@ public class HttpClientUtils {
         try {
             // 创建Http Post请求
             HttpPost httpPost = new HttpPost(url);
-            httpPost.setHeader("Content-Type", "charset=utf-8");
+            httpPost.setHeader("Content-Type", "application/x-www-form-urlencoded");
             // 创建参数列表
             if (param != null) {
                 List<NameValuePair> paramList = new ArrayList<>();