(String url, String tag)
| 41 | } |
| 42 | |
| 43 | public static Response newCall(String url, String tag) throws IOException { |
| 44 | return client().newCall(new Request.Builder().url(url).tag(tag).build()).execute(); |
| 45 | } |
| 46 | |
| 47 | public static String string(String url) { |
| 48 | return string(url, null); |