我正在尝试获取有关使用Facebook登录(或使用)应用程序的朋友的信息,因为我正在使用图形API。但我没有得到相关信息。任何人都可以帮我解决这个问题。
我浏览了facebook开发人员文档并尝试了很多选项,但它没有帮助。
//Request
FB.api(
"/{app-id}", // app-id for the application
{
"fields": "context.fields(friends_using_app)"
},
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
当我尝试获取信息时使用此功能,我将获得这样的输出 没有得到我的朋友的名字和其他信息,他们也使用Facebook登录使用相同的应用程序。
答案 0 :(得分:0)
这也是让所有授权App的朋友的正确代码:
FB.api('/me/friends', (response) => {
if (response && !response.error) {
/* handle the result */
}
}