Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试访问用户的朋友,但我似乎无法弄清楚我将如何去做。没有访问朋友列表的明确方法,所以我认为它可能是一个属性,但这似乎不起作用。我正在尝试浏览文档并在此处和此处找到一些有用的信息,但我仍然无法弄清楚。有什么建议么?
我想我想通了。如果您使用请求,您可以找到使用当前会话的用户朋友列表。我使用的代码是
Request.executeMyFriendsRequestAsync(Session.getOpenSession(), new GraphUserListCallback() { @Override public void onCompleted(List<GraphUser> users, Response response) { // TODO } });