我正在尝试在 Android 上获取我所有朋友的 Facebook ID。这是我使用的代码:
public static List<String> getFaceBookFriendsIDs() {
List<String> friendsList = null;
try {
JSONObject result = new JSONObject(ParseFacebookUtils.getFacebook().request("me/friends"));
JSONArray friendsArray = result.getJSONArray("data");
friendsList = new ArrayList<String>();
for (int i = 0; i < friendsArray.length(); i++) {
friendsList.add(friendsArray.getJSONObject(i).getString("id"));
}
}
catch (MalformedURLException e) {
e.printStackTrace();
}
catch (JSONException e) {
e.printStackTrace();
}
catch (IOException e) {
e.printStackTrace();
}
return friendsList;
}
然而,列表的大小与我拥有的朋友数量不同。这是正常的,还是我做错了什么?