Я пытаюсь выполнить HTTP-запрос GET на следующий URL: https://xml.betfred.com/horse-racing-us.xml
Он заблокирован из моего Java кода с использованием Apache или OKHTTP, но работает каждый раз в Почтальоне без дополнительных заголовков и т. д. c.
Ответ, который я получаю из своего кода:
Response{protocol=http/1.1, code=405, message=Not Allowed, url=https://xml.betfred.com/horse-racing-us.xml}
Почему он работает в Почтальоне но больше нигде?
String URL = "https://xml.betfred.com/horse-racing-us.xml";
HashMap<String, String> headers = new HashMap<String, String>();
headers.put("Cache-Control", "no-cache");
headers.put("User-Agent", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36");
headers.put("Connection", "keep-alive");
headers.put("accept", "application/json");
JSONObject object = null;
try {
object = JSONHelper.readJsonFromUrl(URL, headers);
} catch (JSONException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
public static JSONObject readJsonFromUrl(String urlString, HashMap<String, String> headers) throws IOException, JSONException {
HttpURLConnection urlConnection = null;
URL url = new URL(urlString);
urlConnection = (HttpURLConnection) url.openConnection();
Iterator<Entry<String, String>> it = headers.entrySet().iterator();
while (it.hasNext()) {
Map.Entry<String, String> pair = (Map.Entry<String, String>)it.next();
urlConnection.setRequestProperty(pair.getKey(), pair.getValue());
}
urlConnection.setReadTimeout(10000 /* milliseconds */ );
urlConnection.setConnectTimeout(15000 /* milliseconds */ );
urlConnection.setDoOutput(true);
urlConnection.connect();
BufferedReader br = new BufferedReader(new InputStreamReader(urlConnection.getInputStream()));
StringBuilder sb = new StringBuilder();
String line;
while ((line = br.readLine()) != null) {
sb.append(line + "\n");
}
br.close();
String jsonString = sb.toString();
urlConnection.disconnect();
return new JSONObject(jsonString);
}