我无法获取在佐治亚州发生的所有体育赛事。这是正确的使用方式吗,因为它目前检索全国所有的事件。
FacebookClient publicFbClient = new DefaultFacebookClient();
Connection<Event> events = publicFbClient.fetchConnection(
"search", Event.class,
Parameter.with("category", "Sports"),
Parameter.with("location", "Georgia"),
Parameter.with("type", "event")); 发布于 2011-11-06 02:29:11
在定义place类型时,除了center (latlong)和distance (radius)之外,没有提到in the doc能够在地理上限制结果。
您可以设置径向搜索变量for events,但这样做似乎不会更改结果。
https://stackoverflow.com/questions/7596646
复制相似问题