Browse Source

http请求修改

gao.qiang 21 hours ago
parent
commit
34b22e1d25

+ 2 - 3
base-common/src/main/java/com/ozs/common/utils/HttpClientUtil.java

@@ -90,13 +90,12 @@ public class HttpClientUtil {
         }
     }
 
-    public static String get(String url) throws Exception {
+    public static Response get(String url) throws Exception {
         Request request = new Request.Builder()
                 .url(url)
                 .get()
                 .build();
-        Response response = client.newCall(request).execute();
-        return String.valueOf(response.code());
+        return client.newCall(request).execute();
     }
 
     public static String getURL(String url) throws Exception {