我想让用户登录我的应用好友列表。所以,我需要使用这段代码来做到这一点:
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/me/friends",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
问题是我不知道我需要写入onCompleted方法将朋友列表放到数组中。
答案 0 :(得分:0)
数据到达onCompleted()后,你可以这样做,看看json响应的结构,
Log.d(" - @ - ","图形响应" + response.getJSONObject());
这给出了json对象的结构,你可以从中获得数据。 此外,我认为您的应用程序需要通过Facebook提交,因为您的应用程序需要其他权限才能获得一个人的朋友