「yammer API」を使用してプライベート グループを作成する方法はありますか?
質問する
3687 次
4 に答える
6
以下のコードを使用できます
yam.platform.request({
// yam.request({
url: "groups.json?name=Group_Name&private=true",
method: "POST",
data: {},
success: function (group) {
console.dir(group);
getMyGroups();
},
error: function (group) {
console.error("There was an error with the request.");
}
});
于 2014-06-19T12:12:50.790 に答える
1
いいえ。現在のユーザーの既存のグループにのみ参加/脱退できます。https://developer.yammer.com/restapi/#rest-groupsを参照してください
于 2013-07-10T21:41:26.993 に答える