获取朋友列表 Facebook Api
Get friend list Facebook Api
我看到,Facebook 提供了新的 Android SDK 4.0。谁知道怎么通过这个获取好友列表API?
使用 GraphRequest class,有一个新的 MyFriendsRequest 方法。只要您的应用具有 user_friends 权限,这将 return 您列出也在使用您的应用的朋友。
使用此代码
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();
我看到,Facebook 提供了新的 Android SDK 4.0。谁知道怎么通过这个获取好友列表API?
使用 GraphRequest class,有一个新的 MyFriendsRequest 方法。只要您的应用具有 user_friends 权限,这将 return 您列出也在使用您的应用的朋友。
使用此代码
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();