Yammer api:按组收集消息

Aar*_*uce 5 api rest yammer

以下是yammer api文档:http://developer.yammer.com/restapi/

我在这里错过了什么吗?如何获取特定组的消息?似乎有大量未记录的功能.

JSu*_*uar 6

我同意文档似乎缺乏.

也许:

https://www.yammer.com/api/v1/messages/in_group/<<GROUPID>>.json?access_token=<<ACCESSTOKEN>>"
Run Code Online (Sandbox Code Playgroud)

通过http://balamurugankailasam.blogspot.com/2012/10/displaying-yammer-feed-private-group-in.html


嵌入式源支持此功能:

  • feedType - 要显示的Feed类型:group,topic,user或Open Graph对象
  • feedID - 组,主题或用户Feed的ID(不适用于Open Graph或My Feed)

<script data-app-id="hyB2pTvrL36Y50py8EWj6A" src="https://assets.yammer.com/platform/yam.js"></script>
<script>
  yam.connect.embedFeed(
      { container: '#embedded-feed',
        network: 'fourleaf.com',
        feedType: 'group',           // can be 'group', 'topic', or 'user'          
        feedId: '123'                // feed ID from the instructions above
  });    
</script>    
<div id="embedded-feed"></div>
Run Code Online (Sandbox Code Playgroud)

通过http://developer.yammer.com/connect/