I want to crawl all messages of every group on Yammer (including All Company Group)

前端 未结 2 875
我在风中等你
我在风中等你 2021-01-27 21:05
  1. We are trying to crawl all messages of every group on Yammer (including All Company Group) using https://www.yammer.com/api/v1/messages.json?group_id=<>&access_t

2条回答
  •  礼貌的吻别
    2021-01-27 21:35

    I achieved this a different way. I used the export API to get a list of all of the groups.

    https://export.yammer.com/api/v1/export?model=Group&access_token=
    

    Then I looped through the list of groups and pulled all of the message data for each group and combined them into one *.json

    https://www.yammer.com/api/v1/messages/in_group/###.json
    

    Where ### is the group ID extracted from the groups export data.

提交回复
热议问题