使用FQL,通过它找到包含给定单词的事件。 FQL仅适用于API版本< 2.1。我使用Graph API Explorer来显示事件。例如
search?q=york&type=event
FQL示例
SELECT Eid, name, location, start_time, description, pic_small, creator, event venue FROM WHERE start_time> "Sun Jun 21 0:00:35 GMT 2015" AND (CONTAINS ("york")
我想使用不使用FQL的RestFB进行搜索事件,但不知道如何。文档很少。
答案 0 :(得分:1)
我已经在github上回答了这个问题,但也许其他人认为这很有用。
您的特殊情况不在文档中,但您可以传输文档中的知识并解决问题:http://restfb.com/#searching
Connection<Event> eventList =
facebookClient.fetchConnection("search", Event.class,
Parameter.with("q", "york"), Parameter.with("type", "event"));
现在,您可以遍历eventList
。
在这里,您可以找到如何做到这一点:http://restfb.com/#fetching-connections