Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将 IPA 响应限制为特定条件。例如,我想获取用户墙上所有属于视频的帖子(“类型”:“视频”)?
在 FQL 中是 WHERE 限制,但我没有找到,因为那里是从用户的墙上获取所有帖子?这只能通过 GRAPHAPI 实现?
要使用 FQL 在用户墙上获取帖子,请使用该stream表。尝试文档页面上的第一个示例查询。AND type = 128您可以通过添加到 WHERE 子句来过滤视频。
stream
AND type = 128
要使用 Graph API 执行此操作,您可以在 Video 对象上使用字段扩展。