我有这个代码,没有API也没有,我只想在这里获得一个Group ID,因为它是默认选项,可以在哪里分享评论并在Yammer上嵌入评论流,这甚至可能吗?有没有办法阻止从你所有的团体中选择的可能性并将其留给一个人?
<script>
yam.connect.embedFeed({
container: "#embedded-feed",
feedType: "open-graph",
config: {
header: true,
footer: false,
promptText: "Remember to select a Group and/or person",
showOpenGraphPreview: true,
}
});
</script>
守则正在运作,但我只需要过滤该选项 谢谢
答案 0 :(得分:1)
我们刚刚发布了此功能。文档将很快更新,使用&#34; defaultGroupId&#34;在您的配置中,以选择您的组。
答案 1 :(得分:1)
我做了这样一个简单的实现。
var generateYammerFeeds = function(title, description) {
try {
yam.connect.embedFeed({
container: "#yammerDiscussion",
network: "abc.com",
feedType: "open-graph",
objectProperties: {
fetch: true,
private: false,
ignore_canonical_url: false,
url: location.href,
type: "page",
title: title,
image: '',
description: description
},
config: {
header: true,
footer: true,
showOpenGraphPreview: false,
defaultToCanonical: true,
hideNetworkName: true,
promptText: "Ask a Question",
defaultGroupId: 121212
}
});
return true;
} catch (e) {
return null;
}
};