如何使用Yammer API获取过滤的活动流?

时间:2014-10-03 08:17:04

标签: yammer

Yammer活动流可在以下网址获得:

https://www.yammer.com/api/v1/streams/activities.json?access_token=

这成功地导致了所有最近的活动,如:

{
"items": [
    {
        "id": "/users/www.yammer.com-341514-1508953644/rollups/45191477209921-45191477209921",
        "unseen": true,
        "icon": "/images/notifications/page_add.png",
        "icon_name": null,
        "category": "file-create",
        "message": "[[user:1508783078]] uploaded [[uploaded_file:24511980]].",
        "heading": "",
        "created_at": "2014/10/02 07:07:42 +0000",
        "objects": [],
        "actions": [],
        "subject": {
            "type": "uploaded_file",
            "id": 24511980
        },
        "meta": null,
        "client_type": "unknown",
        "client_url": "https://www.yammer.com",
        "client_icon": "https://mug0.assets-yammer.com/mugshot/images/16x16/3rd_party.png",
        "client_large_icon": "https://mug0.assets-yammer.com/mugshot/images/75x75/3rd_party.png",
        "image": "https://mug0.assets-yammer.com/mugshot/images/48x48/no_photo.png",
        "third_party": false
    },
    {
        "id": "/users/www.yammer.com-341514-1508953644/rollups/45191475863746-45191475863746",
        "unseen": true,
        "icon": "/images/notifications/page_add.png",
        "icon_name": "page",
        "category": "file-download",
        "message": "[[user:1508783078]] downloaded [[uploaded_file:24373320]] from the [[group:3455089]] group.",
        "heading": "",
        "created_at": "2014/10/02 07:07:00 +0000",
        "objects": [
            {
                "id": 24373320,
                "type": "uploaded_file"
            }
        ],
        "actions": [],
        "subject": {
            "type": "uploaded_file",
            "id": 24373320
        },
        "meta": null,
        "client_type": "unknown",
        "client_url": "https://www.yammer.com",
        "client_icon": "https://mug0.assets-yammer.com/mugshot/images/16x16/3rd_party.png",
        "client_large_icon": "https://mug0.assets-yammer.com/mugshot/images/75x75/3rd_party.png",
        "image": "https://mug0.assets-yammer.com/mugshot/images/48x48/no_photo.png",
        "third_party": false
    },
]}

问题: 我试图在某个时间戳之后或在某个偏移之后获得所有最近的活动。是否有任何查询参数?

1 个答案:

答案 0 :(得分:0)

这是

older_than="/users/www.yammer.com-341514-1508953644/rollups/45191475863746-45191475863746"

将返回比您在示例返回值

中显示的上一个活动更旧的所有活动