在Graph API中,如果我使用Graph API Explorer为以下查询生成的令牌发出请求:
https://graph.facebook.com/v2.2/993673107328394
我得到了一些结果:
{
"id": "993673107328394",
"first_name": "Johann",
"last_name": "Gomes",
"link": "https://www.facebook.com/app_scoped_user_id/993673107328394/",
"name": "Johann Gomes",
"updated_time": "2015-01-19T16:00:34+0000"
}
但是,当我使用App Access令牌时,会向我返回一个异常:
{
"error": {
"message": "Unsupported get request. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api",
"type": "GraphMethodException",
"code": 100
}
}
这很奇怪,因为用户和应用访问令牌之间的唯一区别似乎是它的有效使用时间。有什么想法吗?
提前致谢!
答案 0 :(得分:0)
一切都在文档中:
- 有许多名为公共个人资料的字段,其中包含
public_profile
权限。- 必须使用具有相关“扩展配置文件”权限的访问令牌来请求不属于公共配置文件的字段。
第一个项目符号表示您 使用用户访问令牌。