无法使用restFB获取特定位置的事件

发布于 2024-12-07 02:10:15 字数 387 浏览 1 评论 0 原文

我无法获取该州发生的所有体育赛事 乔治亚州。这是使用它的正确方法吗,因为它目前 检索全国范围内的所有事件。

FacebookClient publicFbClient = new DefaultFacebookClient(); 

Connection<Event> events = publicFbClient.fetchConnection( 
        "search", Event.class, 
        Parameter.with("category", "Sports"), 
        Parameter.with("location", "Georgia"), 
        Parameter.with("type", "event")); 

I am unable to fetch all sports events happening in the state of
Georgia. Is this the right way to use this, since its currently
retrieving all events across the country.

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 技术交流群。

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

发布评论

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

评论(1

快乐很简单 2024-12-14 02:10:15

在文档中没有提到能够在地理上限制结果,除了 place 时,>center(纬度)和 distance(半径)。

您可以设置径向搜索变量 对于事件,但这样做似乎不会改变结果。

There's no mention in the doc of the ability to limit results geographically except center (latlong) and distance (radius) when the type place is defined.

You can set the radial search variables for events but doing so doesn't appear to change the results.

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