0

如果授予所需的许可,如何获取与用户有关系或与 fql 结婚的人的 uid?我需要获取与此人相关的用户的用户 ID .. 我正在使用 php sdk

4

1 回答 1

1

您要查找的信息位于用户图形 API 端点中。它被称为significant_other。您将能够将它与 API一起使用,如下所示 -

https://graph.facebook.com/user_id?fields=id,name,significant_other 

使用 FQL,您可以使用significant_other_id用户表的字段。像这样 -

select uid, name,significant_other_id from user where uid=user_id 
于 2013-01-05T22:32:27.157 回答