Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Look at the raw JSON - do you see anything weird? – Cody Caughlan Sep 5 '12 at 16:20
nope nothing odd, an array called data with lots of objects, all as expected... – Niall Sep 5 '12 at 16:24
There should be more to the stack trace than those 3 lines, can you copy and paste the entire stack trace? – Jesse Chen Sep 5 '12 at 17:51
@JesseChen The whole thing from LogCat is as follows: – Niall Sep 5 '12 at 19:43
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
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.