3
我有一個代碼從facebook api中檢索所有朋友,但我只想得到使用應用程序的Facebook朋友。 我試過fb.request(「me/friends?fields = installed」);但從來沒有工作,我需要額外的許可?Facebook API朋友誰使用相同的應用程序android
繼承人我的代碼:
jsonUser = fb.request("me/friends");
friendObj = Util.parseJson(jsonUser);
friendArray = friendObj.getJSONArray("data");
friendlist = new ArrayList<String[][]>();
String[][] friendsToList = new String[1][2];
int friendCount = 0;
String fId, fNm;
JSONObject friend;
for (int i = 0;i<friendArray.length();i++){
//Get a JSONObject from the JSONArray
friend = friendArray.getJSONObject(i);
//Extract the strings from the JSONObject
friendsToList[0][0] = friend.getString("id");
friendsToList[0][1] = friend.getString("name");
friendlist.add(friendsToList);
//Set the values to our arrays
Log.e("Tester",""+ friendsToList[0][0]+" "+ friendsToList[0][1]);
friendCount ++;
}
什麼是FB變量? –