Yammer REST API-在较新的消息之前获取所有较旧的消息,因此无法返回old_than

时间:2019-01-02 10:30:34

标签: yammer

我们正在尝试从Yammer中的特定组中检索所有邮件,但是在某些情况下,检索较旧邮件时会遇到问题。

示例:

在一个完美的世界中,Yammer组中的每个帖子都是同步添加的,并且不被评论或喜欢,我们可以使用参数old_than:id

轻松检索每条消息。

但是,如果有旧消息被评论,则似乎该消息是在新消息之间返回的。

这可能会导致极端情况,即较旧的消息是message数组中的最后一条,并且使用该消息项id查询较旧的消息时,我们只会收到比该消息更旧的消息,并且有可能在中间之间不返回较新的消息。 >

我们正在使用REST API /messages/in_group/[:group_id].json,在此处进行记录:

https://developer.yammer.com/docs/messagesin_groupgroup_id

代码示例:

我们已经缩减了代码示例,以说明我们检索所有消息的方法。

yam.platform.request({
url: 'messages/in_group/' + vm.webpartSettings.feedId + '.json?threaded=true' + (oldest ? ('&older_than=' + oldest) : ''),
method: 'GET',
success: function (response) {

    // Parse messages
    var lastId;
    var parsedMessages = response.messages.map(function (m, i) {
        if (i === (response.messages.length - 1)) {
            lastId = m.id;
        }

        return {
            id: m.id,
            author: response.references.filter(function (r) {
                r.type === 'user' && r.id === m.sender_id;
            })[0],
            date: new Date(m.created_at),
            url: m.web_url,
            image: getImageFromAttachments(m.attachments),
            text: m.body.parsed,
            likes: m.liked_by.count,
            likedByCurrentUser: m.liked_by.names.some(function (u) {
                return u.user_id === response.meta.current_user_id;
            })
        };
    }).filter(function (m) {
        return m.image;
    });

    vm.messages = vm.messages.concat(parsedMessages);

    // If there are more messages get them, otherwise render the grid
    if (response.meta.older_available) {
        getAndParseMessages(lastId);
    } else {
        // render method removed       
    }
},
error: function (response) {
    // error method removed
}
});

当使用查询参数threaded:true调用API时,我们希望为每个线程检索线程启动器(第一条消息),并按创建日期而不是“最新活动”对它们进行排序。

有人知道此功能旨在用于查询较旧的消息吗?还是我们遗漏了某些东西?

更新

我为Yammer创建了Uservoice,以便与完整的Office 365开发人员平台集成。您可以在这里对其进行投票:https://yammer.uservoice.com/forums/399627-yammer/suggestions/36474385-integrate-yammer-in-the-full-office-365-developer

1 个答案:

答案 0 :(得分:0)

您应使用Data Export API进行此类批量数据任务。 REST API专为用户客户端应用程序而设计,以您遵循的模式查询数据是约束之一。