1

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.

Madness
  • 113
  • 2
  • 8
  • You can not search events by start time. https://developers.facebook.com/docs/graph-api/using-graph-api/#search lists what you can search for, and what _by_. – CBroe Aug 24 '17 at 07:28
  • Can you explain what is not working? – Norbert Aug 24 '17 at 09:54

1 Answers1

1

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

Duong Anh
  • 529
  • 1
  • 4
  • 21