|
@@ -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 {
|