페이스북 연동하여 친구수를 가져오도록 하겠습니다.

다음의 코드로 str에는 친구 정보가 json 으로 넘어옵니다.

Facebook mFacebook = new Facebook(APP_ID); 
String str = mFacebook.request("me/friends");   

그런후   JSONObject 객체를 사용하여 친구수를 가져옵니다.

JSONObject json = new JSONObject(str);
JSONArray arrJson = (JSONArray)json.get("data");
int length = arrJson.length();

+ Recent posts