我试图吸引所有登录我的应用程序的用户的朋友。
我无法使用此API [朋友]:
https://developers.facebook.com/docs/graph-api/reference/v2.0/user/friends
因为此API仅返回使用过发出请求的应用程序的所有朋友。
所以我找到了这个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相同的结果。
千巷猫影
拉莫斯之舞
相关分类