无法使用restFB获取特定位置的事件
我无法获取该州发生的所有体育赛事 乔治亚州。这是使用它的正确方法吗,因为它目前 检索全国范围内的所有事件。
FacebookClient publicFbClient = new DefaultFacebookClient();
Connection<Event> events = publicFbClient.fetchConnection(
"search", Event.class,
Parameter.with("category", "Sports"),
Parameter.with("location", "Georgia"),
Parameter.with("type", "event"));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在文档中没有提到能够在地理上限制结果,除了
place 时,>center(纬度)和
distance
(半径)。您可以设置径向搜索变量 对于事件,但这样做似乎不会改变结果。
There's no mention in the doc of the ability to limit results geographically except
center
(latlong) anddistance
(radius) when the typeplace
is defined.You can set the radial search variables for events but doing so doesn't appear to change the results.