Tag: 脸谱图 API V2.0

获取所有用户朋友使用FacebookgraphicsAPI – Android的

我试图让所有的朋友,login到我的应用程序的用户。 我不能使用这个API [朋友]: https://developers.facebook.com/docs/graph-api/reference/v2.0/user/friends 因为此API只返回任何使用该应用程序发出请求的朋友。 所以我find了这个API [friendlist]: https://developers.facebook.com/docs/graph-api/reference/v2.0/friendlist 跟着这个答案 ,我收到了好友列表。 但是当我尝试获取好友列表的成员时,我收到了空列表: new Request( session, "/2692926356774/members", null, HttpMethod.GET, new Request.Callback() { public void onCompleted(Response response) { /* handle the result */ Log.e(LOG_TAG,"Members: " + response.toString()); } } ).executeAsync(); 2692926356774是我的Acquaintances list id ,我尝试了几个其他id与相同的结果。