I'm trying to use twitter api in the following way:
String urlAdd = "https://api.twitter.com/1/following/ids.json?user_id=1000123";
URL url = new URL(urlAdd);
URLConnection urlConnection = url.openConnection();
BufferedReader in = new BufferedReader(new InputStreamReader(urlConnection.getInputStream()));
getInputStream input stream throws IOException, it happens because i've reached my request limit. I want to be able to distinghuish between request limit error and other errors. Twitter returns error message in json format, but i can't read it because of the thrown exception.
Any ideas on how can I fetch the error message?