3

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

FacebookClient publicFbClient = new DefaultFacebookClient(); 

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

1 回答 1

1

在定义类型时,除了(latlong) 和(radius)之外,文档中没有提到在地理上限制结果的能力。centerdistanceplace

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

于 2011-11-05T18:29:11.373 回答