-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathgag.js
52 lines (47 loc) · 932 Bytes
/
gag.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
'use strict';
var RongSDK = require('rongcloud-sdk')({
appkey: '8luwapkvucoil',
secret: 'y0icysjl4h3LWz'
});
var Chatroom = RongSDK.Chatroom;
var Gag = Chatroom.Gag;
/*
API 文档: http://www.rongcloud.cn/docs/server_sdk_api/chatroom/gag.html#add
*/
var chatroom = {
id: 'chatroom001',
members: [{
id: 'member02'
}],
minute: 30
};
Gag.add(chatroom).then(result => {
console.log(result);
}, error => {
console.log(error);
});
/*
API 文档: http://www.rongcloud.cn/docs/server_sdk_api/chatroom/gag.html#remove
*/
var chatroom = {
id: 'chatroom001',
members: [{
id: 'member02'
}]
};
Gag.remove(chatroom).then(result => {
console.log(result);
}, error => {
console.log(error);
});
/*
API 文档: http://www.rongcloud.cn/docs/server_sdk_api/chatroom/gag.html#getList
*/
var chatroom = {
id: 'chatroom001'
};
Gag.getList(chatroom).then(result => {
console.log(result);
}, error => {
console.log(error);
});