如何通过Facebook Graph API知道id是属于用户还是页面?

时间:2013-04-01 22:14:41

标签: facebook facebook-graph-api

我有一个ID,我想知道它是属于一个页面还是一个用户。我怎么知道呢?

2 个答案:

答案 0 :(得分:3)

通过API将metadata参数设置为true来访问该ID,响应中的'type'字段将告诉您它是什么类型的对象

e.g。

https://graph.facebook.com/<my user id>?metadata=1

{
   "id": "1234567",
   "name": "xxxxxx",
   "first_name": "xxx",
   "last_name": "xxx",
   "username": "xxx.xxxxx",
   "gender": "male",
   "locale": "en_US",
   "type": "user"
   //removed other metdata

答案 1 :(得分:0)

https://graph.facebook.com/?元数据= 1

{    “id”:“1234567”,    “name”:“xxxxxx”,    “first_name”:“xxx”,    “last_name”:“xxx”,    “username”:“xxx.xxxxx”,    “性别”:“男性”,    “locale”:“en_US”,    “type”:“user”    //删除了其他元数据