我很困惑......我尝试设置一个fql粉丝页面查询,在我的搜索中,我发现我的用户有几个ID
...那么我应该使用哪个?
可能需要更多解释^^
4101606156331
(https://developers.facebook.com/tools/explorer/145634995501895/?method=GET&path=me%3Ffields%3Did%2Cname&version=v2.0)1768286839
(https://graph.facebook.com/chapit.nicolas)哪个是正确的?为什么有两个ID
? (也许更多......)
有人可以向我确认哪个右侧ID
(260226614127613 or 320233158126958
)对于 CodeRougeAuto 页面是正确的?因为我喜欢这个页面,但是当我试图知道我是否喜欢使用Graph explorer工具中的fql页面(带有活动令牌)时,我得到了这个:
SELECT uid
FROM page_fan
WHERE uid=UID AND page_id=PAGEID
4101606156331
和260226614127613
:empty response
4101606156331
和320233158126958
:empty response
1768286839
和260226614127613
:Error The global ID 1768286839 is not allowed. Please use the application specific ID instead
1768286839
和320233158126958
:Error The global ID 1768286839 is not allowed. Please use the application specific ID instead
感谢您的宝贵帮助!
答案 0 :(得分:1)
您看到的是所谓的全球和应用范围 user_ids。如果您使用的是图谱API的v1.0,则user_ids将为全局。如果你使用v2.0,它们将是 app-scoped ,就像你的第一个例子一样。
全部在文档中:https://developers.facebook.com/docs/apps/upgrading#upgrading_v2_0_user_ids