RestFb - 对于事件,描述和多个其他字段将为空

时间:2016-02-26 13:18:40

标签: java facebook restfb

这是我的代码

public class RestFbTest {

    public static void main(String[] args) {

    FacebookClient facebookClient = new DefaultFacebookClient(ACCESS_TOKEN);
    Connection<Event> search = facebookClient.fetchConnection("search", Event.class, Parameter.with("q", "Bengaluru"), Parameter.with("type", "event"));
    int c=0;
    for (List<Event> searchList : search) {
        for (Event event : searchList) {

        System.out.println("Event: " + event);
        }
    }

    }

}

事件ID已显示在列表中。 例如,这是第一个事件ID:149517752101309 列表中的描述为null。 但在网络上我可以看到描述

Description of Id

我的访问令牌具有以下范围:user_events,public_profile

为什么restFb没有捕获描述?

0 个答案:

没有答案