-
Notifications
You must be signed in to change notification settings - Fork 223
/
BlockExample.java
73 lines (61 loc) · 2.34 KB
/
BlockExample.java
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package io.rong.example.chatroom;
import io.rong.RongCloud;
import io.rong.methods.chatroom.block.Block;
import io.rong.models.chatroom.ChatroomMember;
import io.rong.models.chatroom.ChatroomModel;
import io.rong.models.response.ListBlockChatroomUserResult;
import io.rong.models.response.ResponseResult;
/**
* @author RongCloud
*/
public class BlockExample {
/**
* 此处替换成您的appKey
* */
private static final String appKey = "appKey";
/**
* 此处替换成您的appSecret
* */
private static final String appSecret = "appSecret";
/**
* 自定义api地址
* */
private static final String api = "http://api.rong-api.com";
public static void main(String[] args) throws Exception {
RongCloud rongCloud = RongCloud.getInstance(appKey, appSecret);
//自定义 api地址方式
//RongCloud rongCloud = RongCloud.getInstance(appKey, appSecret,api);
Block block = rongCloud.chatroom.block;
ChatroomMember[] members = {
new ChatroomMember().setId("qawr34h"),new ChatroomMember().setId("qawr35h")
};
/**
*API 文档: https://doc.rongcloud.cn/imserver/server/v1/im-server-api-list-v1
*
* 添加封禁聊天室成员方法
*/
ChatroomModel chatroom = new ChatroomModel()
.setId("d7ec7a8b8d8546c98b0973417209a548")
.setMembers(members)
.setMinute(5);
ResponseResult result = block.add(chatroom);
System.out.println("addBlockUser: " + result.toString());
/**
* API 文档: https://doc.rongcloud.cn/imserver/server/v1/im-server-api-list-v1
*
* 移除封禁聊天室成员方法
*/
chatroom = new ChatroomModel()
.setId("d7ec7a8b8d8546c98b0973417209a548")
.setMembers(members);
//ResponseResult removeResult = block.remove(chatroom);
//System.out.println("removeResult: " + removeResult.toString());
/**
* API 文档: https://doc.rongcloud.cn/imserver/server/v1/im-server-api-list-v1
*
* 查询被封禁聊天室成员方法
*/
ListBlockChatroomUserResult getResult = block.getList("d7ec7a8b8d8546c98b0973417209a548");
System.out.println("getListBlockUser: " + getResult.toString());
}
}