我看到Facebook提供了新的Android SDK 4.0。谁知道如何通过此API获取好友列表?
答案 0 :(得分:2)
使用GraphRequest类,有一个newMyFriendsRequest方法。只要您的应用具有user_friends权限,这将返回同时使用您的应用的朋友列表。
答案 1 :(得分:0)
使用此代码
Request friendRequest = Request.newMyFriendsRequest(activeSession,
new GraphUserListCallback(){
@Override
public void onCompleted(List<GraphUser> users, Response response) {
//users contains details of all the friends the person has
}
});
friendRequest.executeAsync();