FQL查询,是否可以获取您所在区域的所有事件?
谈论 Facebook FQL, 是否可以进行查询
SELECT name, venue, location, start_time FROM event
WHERE location ="New York"
,例如搜索所有发布在 Facebook 上且在您所在地区可用的公共活动?
Talking aout Facebook FQL,
is it possible to do a query like
SELECT name, venue, location, start_time FROM event
WHERE location ="New York"
to search all public events, posted on Facebook, and available in your area?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
否,因为您列出的字段均不可
可索引
,但是您可以在 Graph API 中搜索指定时间范围内的公共事件。
这可能不适合您的需求,因为结果中的
location
字段仍然并不总是包含可靠的数据,并且过滤指定范围内的所有公共事件可能有点矫枉过正......No, since non of fields you listed are
indexable
You can however search Graph API for public events in specified time ranges.
Which probably not suitable for your needs, since
location
field in results still not always contain reliable data, and filtering all the public events in specified range may be overkill...