RestFB 按 start_time 搜索事件

RestFB Searching events by start_time

我无法写入由 start_time 指定的事件的 GET 请求。

Connection<Event> eventConnection = fbClient.fetchConnection("search", Event.class,
            Parameter.with("q", "york"), Parameter.with("type", "event"), Parameter.with("start_time", "2017-11-11"));

我试图在 restfb 上发出正确的请求,但没有成功。 Print screen of this GET request.

我想用 RestFB 做一个搜索事件。 提前谢谢你。

您可以使用:Parameter.with("since", "2017-11-11")