Facebook API 用于搜索朋友的属性

发布于 2024-12-10 14:17:47 字数 146 浏览 0 评论 0原文

可以在 Graph API 中访问好友姓名。但是,我想要一种方法 - 通过图表或应用程序 API 能够根据特定属性进行搜索。

例如:搜索来自英国伦敦的所有朋友。

或者搜索所有喜欢摄影的朋友。

有什么地方或 API 可以提供帮助吗?

It's possible to access friend names in the Graph API. However, I want a method - either via the graph or App API to be able to search based on specific properties.

Eg: searching for all friends from London, UK.

Or searching all friends who enjoy photography.

Any places or API that may be able to assist with this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒几许 2024-12-17 14:17:47

您可以通过 FQL。例如,这是一个针对所有女性朋友的查询:

select uid, name, sex 
from user 
where uid in (SELECT uid2 FROM friend WHERE uid1 = me())
and sex="female"

位置是一个复杂的对象,我不确定是否可以像其他字段一样查询它。

You can search several of the properties querying the user table with FQL. For example, here is a query for all female frinds:

select uid, name, sex 
from user 
where uid in (SELECT uid2 FROM friend WHERE uid1 = me())
and sex="female"

The location is a complex object and I am not sure if it can be queried on like the other fields.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文