Search code examples
javafacebookfacebook-graph-apirestfbfacebook-events

RestFB Searching events by start_time


I am unable to write GET request of the event specifying by start_time.

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

I tried to make correct request on restfb but it didn't worked. Print screen of this GET request.

I would like to make a search events by using RestFB. Thank you in advance.


Solution

  • You can use: Parameter.with("since", "2017-11-11")