我想创建一个搜索引擎,它希望按名称搜索人,我需要字段:id,name,education。
有可能吗?
我用这种方式:
https://graph.facebook.com/search?q=tom&type=user&fields=id,name,education&access_token=XXX
但是,结果遗漏了教育信息。
{ "data": [
{
"id": "123456789",
"name": "name0"
},
{
"id": "123456789",
"name": "name1"
},
{
"id": "123456789",
"name": "name2"
},
{
"id": "123456789",
"name": "name3"
}, ...
答案 0 :(得分:0)
这是不可能的,您只能通过https://graph.facebook.com/me?fields=education
权限获得授权您的应用的用户的教育,这将是API调用:
{{1}}