Despite the fact that going to
https://graph.facebook.com/me/friends?fields=name,email,username,installed&access_token=....
works perfectly, the java code below only returns 57 results and then abruptly stops and only returns a portion of the 58th result. This is irrelevent of the user and the number of friends they have (presuming its greater than 57)
Bundle bundle = new Bundle();
bundle.putString("fields", "name,username,installed");
String response = facebook.request("me/friends",bundle, "GET");
JSONArray jArray = new JSONArray(response);
for (int i = 0;i<(jArray.length());i++) {
JSONObject json_obj=jArray.getJSONObject(i);
String username=json_obj.getString("username");
String fbname=json_obj.getString("name");
String installed=json_obj.getString("installed");
//do stuff
}
The error itself is as follows:
W/System.err(3660): at org.json.JSON.typeMismatch(JSON.java:111)
W/System.err(3660): at org.json.JSONArray.<init>(JSONArray.java:91)
W/System.err(3660): at org.json.JSONArray.<init>(JSONArray.java:103)
Anyone have any idea why this is happening or could it be an issue with Facebook?
09-05 18:09:30.779: W/System.err(1729): at org.json.JSON.typeMismatch(JSON.java:111) 09-05 18:09:30.779: W/System.err(1729): at org.json.JSONArray.<init>(JSONArray.java:91) 09-05 18:09:30.779: W/System.err(1729): at org.json.JSONArray.<init>(JSONArray.java:103)09-05 18:09:30.789: W/System.err(1729): at com.example.trigger2.FacebookUpdate$2.run(FacebookUpdate.java:131)– Niall Sep 5 '12 at 19:44