我無法獲取所有在 喬治亞州發生的體育賽事。這是正確的方式來使用它,因爲它目前 檢索全國所有的事件。無法使用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"));
任何想法都不勝感激 – diya