以下是yammer api文档:http://developer.yammer.com/restapi/
我在这里遗漏了什么吗?如何获取特定组的消息?似乎有大量未记录的功能。
答案 0 :(得分:6)
我同意文档似乎缺乏。
也许:
https://www.yammer.com/api/v1/messages/in_group/<<GROUPID>>.json?access_token=<<ACCESSTOKEN>>"
通过http://balamurugankailasam.blogspot.com/2012/10/displaying-yammer-feed-private-group-in.html
嵌入式Feed支持此功能:
- feedType - 要显示的Feed类型:组,主题,用户或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>