This repository has been archived by the owner on Nov 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 495
/
api-test.html
1507 lines (1291 loc) · 43 KB
/
api-test.html
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html lang="en">
<head>
<meta charset="UTF-8">
<title>WebSDK API test</title>
</head>
<body>
<link rel="stylesheet" href="./res/rongcloud.css">
<a href="https://github.com/rongcloud/websdk-demo/blob/master/api-test.html" class="get-source">获取源码</a>
<style>
body{
font-size:14px;
line-height:2;
color:#333;
}
h1,h2,h3{
margin:0;
}
.panel span{
display:inline-block;
width:60px;
}
.show{
display:none;
font-size:12px;
border:1px solid #ccc;
background:#fff;
padding:10px 30px;
width:300px;
overflow:auto;
position:fixed;
right:10px;
top:0;
bottom:10px;
}
.btns{
display:none;
}
.btns input,
.btns a{
font-size:12px;
margin:20px 10px 0 10px;
}
.result{
display:none;
background:#f5f5f5;
margin-top:30px;
width:730px;
padding:5px;
overflow:hidden;
}
.result h2{
font-size:14px;
margin:0;
padding:0;
}
.result btn{
margin:5px;
padding:0;
color:#cd0000;
}
.result-code{
float:right;
margin:0 5px 5px 0;
color:#fff;
background:#000;
border:none;
}
#result-body{
position: relative;
}
.code-copy{
position:absolute;
right:5px;
top:5px;
}
.title {
background:#f5f5f5;
padding-left:1em;
padding-bottom:1em;
}
.title h2{
display: inline;
font-size:14px;
margin-right:0.5em;
}
</style>
<!--
check.js是做一些环境监测用的临时代码,仅限开发调试使用
-->
<!-- <script src="js/pre-check.js"></script> -->
<!--
http://www.ghostchina.com/adding-syntax-highlighting-to-ghost-using-highlight-js/
-->
<link href="res/monokai_sublime.min.css" rel="stylesheet">
<script src="res/highlight.min.js"></script>
<script type="text/javascript" src="lib/jquery-3.1.1.js"></script>
<link rel="stylesheet" href="json-view/jsonview.css" />
<script type="text/javascript" src="json-view/jquery.jsonview.js"></script>
<script src="//cdn.ronghub.com/RongIMLib-2.5.4.js"></script>
<script src="//cdn.ronghub.com/RongEmoji-2.2.4.min.js"></script>
<script src="//cdn.ronghub.com/RongIMVoice-2.2.4.min.js"></script>
<!-- 声音样本文件 -->
<script src="res/voice-amr-base64.json"></script>
<!-- 二次封装的初始化代码 -->
<script src="init.js"></script>
<script>
"use strict";
function showTips(data){
var dom = document.getElementById("show");
dom.style.display = "block";
if(data){
dom.innerHTML += "<li>" + data + "</li>";
}else{
dom.innerHTML = "";
}
}
function showResult(title,code,start){
var dom = document.getElementById("result-area");
dom.style.display = "block";
var now = new Date().getTime();
var t = document.getElementById("result-title");
t.innerHTML = title + ' <small>执行时间:' + (now - start) + 'ms</small>';
jsonOprators(code);
}
function jsonOprators(json){
var jt = $('#result-body');
if(typeof json == 'function'){
jt.html('<pre class="jsonview"><code id="result-code">' + json + '</code></pre>');
$('pre > code').each(function(i, block) {
hljs.highlightBlock(block);
});
}else{
json = JSON.stringify(json);
jt.JSONView(json);
}
$('#collapse-btn').on('click', function() {
jt.JSONView('collapse');
});
$('#expand-btn').on('click', function() {
jt.JSONView('expand');
});
$('#toggle-btn').on('click', function() {
jt.JSONView('toggle');
});
$('#toggle-level1-btn').on('click', function() {
jt.JSONView('toggle', 1);
});
$('#toggle-level2-btn').on('click', function() {
jt.JSONView('toggle', 2);
});
}
function getTimer(begin){
var now = new Date().getTime();
return " time:" + (now - begin) + " ms";
}
</script>
<!--
用户数据,群组数据,好友关系 必须有应用服务器提供
显示会话信息需要从融云和应用服务器共同获取数据才能完整显示
开发环境
默认appkey = 8w7jv4qb78a9y,已上线
当前用户:user8
对象用户:user9,user10
生产环境
82hegw5uh8ktx
rybznHwVbrk7upeAMWv8RnHEDKuqy0jJayFPsQ4gP8z+SyAuRRg4uk2hA24NDcnvbl6oswAYXQCdpAbHm4pp9g==
-->
<script>
"use strict";
var instance = null;
var appKey = "";
var token = "";
var userId = "";
/*
消息全部用单聊,user8 -> user9
*/
var conversationType = RongIMLib.ConversationType.PRIVATE; // 私聊
/*
PRIVATE 1 单聊
DISCUSSION 2 讨论组
GROUP 3 群组
CHATROOM 4 聊天室
CUSTOMER_SERVICE 5 客服
SYSTEM 6 系统消息
APP_PUBLIC_SERVICE 7 应用公众账号(应用内私有)
PUBLIC_SERVICE 8 公众账号 (公有)
*/
var targetId = "user9";
var targetId2 = "user10";
var targetIds = [];
//消息接收方 Id,根据不同的 ConversationType,可能是用户 Id、讨论组 Id、群组 Id、聊天室 Id等。
var begin = 0;
function startInit(token){
appKey = document.getElementById("appkey").value;
if(appKey == ""){
alert("必须提供appkey和token");
}
showTips();
begin = new Date().getTime()
//公有云初始化
var config = {
//protobuf: 'https://cdn.ronghub.com/protobuf-2.3.6.min.js' //支持http(s)网络路径、本地相对路径
};
/*
----------
备注: 桌面版需优先开通,开通后方可使用
开通方式,请移步开发者后台提工单,申请开通 https://developer.rongcloud.cn/signin?returnUrl=%2F
----------
RongDesktop 即为 electron-c++sdk/js/preload.js 中的 `RongDesktop`
以下逻辑为 RongDesktop 存在即认为在 Electron 中,请一定保证 RongDesktop 唯一、不可破坏、不被污染
详细请参考 init.js dataProvider 用法
*/
var imClient = null;
var isDesktopEnv = (typeof RongDesktop != 'undefined')
if (isDesktopEnv) {
imClient = RongDesktop.require('IMLib');
// document.getElementById("rong-discussion").style.display = 'none';
// document.getElementById("rong-public-service").style.display = 'none';
// document.getElementById("rong-home-page").style.display = 'block';
}
var params = {
appKey : appKey,
token : token,
imClient: imClient,
userId: 'user10'
};
var callbacks = {
getInstance : function(_instance){
instance = _instance;
},
receiveNewMessage : function(message){
// 判断消息类型
showTips("新消息,类型为:" + message.messageType);
// showResult("新消息",message,start);
console.log("messageUId:" + message.messageUId + ", messageId:" + message.messageId);
console.log(message);
},
getCurrentUser : function(userInfo){
showTips("链接成功 用户id:" + userInfo.userId + ", 耗时" + getTimer(begin));
userId = userInfo.userId;
document.getElementById("login").innerHTML = userId;
afterConnected();
}
};
init(params,callbacks,config);
showTips("初始化 应用 " + getTimer(begin));
RongIMLib.RongIMEmoji.init();
showTips("初始化 表情库 " + getTimer(begin));
RongIMLib.RongIMVoice.init();
showTips("初始化 声音库 " + getTimer(begin));
}
function login(){
token = document.getElementById("token").value;
if(token == ""){
alert("必须提供 token");
}
targetIds = document.getElementById("targetId").value;
if(targetIds == ""){
alert("必须提供两个的有效targetId");
}
targetIds = targetIds.split(",").join(",").split(",");
targetId = targetIds[0];
targetId2 = targetIds[1];
startInit(token);
}
function changeUser(){
instance.logout();
var token = document.getElementById("token2").value;
if(token == ""){
alert("必须提供 token");
}
startInit(token);
}
function afterConnected(){
document.getElementById("panel").style.display = "none";
document.getElementById("btns").style.display = "block";
}
function disconnect(){
/*
文档:http://www.rongcloud.cn/docs/api/js/RongIMClient.html
*/
var start = new Date().getTime();
instance.disconnect();
showResult("断开链接 成功", null , start);
}
function reconnect(){
/*
1: reconnect 是重新连接,并没有重连机制,调用此方法前应该进行网络嗅探,网络正常再调用 reconnect。
2: 提示其他设备登录请勿调用重连方法。
3: docs http://www.rongcloud.cn/docs/api/js/RongIMClient.html
*/
var start = new Date().getTime();
begin = new Date().getTime();
RongIMClient.reconnect({
onSuccess: function(userId) {
showTips("重新链接成功,用户id:" + userId + "; " + getTimer(begin));
showResult("重新链接 成功", userId, start);
},
onTokenIncorrect: function() {
//console.log('token无效');
showResult("重新链接 失败", "token无效", start);
},
onError:function(errorCode){
var info = '';
switch (errorCode) {
case RongIMLib.ErrorCode.TIMEOUT:
info = '超时';
break;
case RongIMLib.ErrorCode.UNKNOWN_ERROR:
info = '未知错误';
break;
case RongIMLib.ErrorCode.UNACCEPTABLE_PROTOCOL_VERSION:
info = '不可接受的协议版本';
break;
case RongIMLib.ErrorCode.IDENTIFIER_REJECTED:
info = 'appkey不正确';
break;
case RongIMLib.ErrorCode.SERVER_UNAVAILABLE:
info = '服务器不可用';
break;
}
showTips(info);
showResult("重新链接 失败", info, start);
}
});
}
//消息撤回变量及设置
var recallMessage = null, clearMessage;
function markMessage(message){
recallMessage = message;
clearMessage = message;
}
function sendTextMessage(){
/*
文档: http://www.rongcloud.cn/docs/web.html#5_1、发送消息
http://rongcloud.cn/docs/api/js/TextMessage.html
1: 单条消息整体不得大于128K
2: conversatinType 类型是 number,targetId 类型是 string
*/
/*
1、不要多端登陆,保证所有端都离线
2、接收 push 设备设置:
(1)打开系统通知提醒
(2)小米设置 “授权管理” -> “自己的应用” 为自启动
(3)应用内不要屏蔽新消息通知
3、内置消息类型,默认 push,自定义消息类型需要
pushData 显示逻辑顺序:自定义 > 默认
4、发送其他消息类型与发送 TextMessage 逻辑、方式一致
*/
var pushData = "pushData" + Date.now();
var isMentioned = false;
var content = {
content: [
"阿拉伯语:الشرق الأوسط ",
"希伯来语:המזרח התיכון",
"emoji: 😊 ",
"希腊字母: π,α,β, ",
"数字单位部分字符 如:× ",
"拉丁文所有字符 如:Ο Ρ σ Ï Æ ",
"拼音所有字符 如: ě ì ň ",
"英文音标部分字符 如 : ə ʃ ",
"俄文部分字符 如 :ш ; ⊇ â Œ Š ™ "
].join(","),
user : {
"id" : "this-is-a-test-id", //不支持中文及特殊字符
"name" : "张三",
"portrait" : "https://avatars1.githubusercontent.com/u/10265829?s=96&v=4"
},
extra: "{\"key\":\"value\", \"key2\" : 12, \"key3\":true}"
};
var msg = new RongIMLib.TextMessage(content);
var start = new Date().getTime();
instance.sendMessage(conversationType, targetId, msg, {
onSuccess: function (message) {
markMessage(message);
showResult("发送文字消息 成功",message,start);
},
onError: function (errorCode,message) {
showResult("发送文字消息 失败",message,start);
}
}, isMentioned, pushData);
}
function sendImageMessage(){
/*
文档:http://www.rongcloud.cn/docs/api/js/ImageMessage.html
需自行解决文件上传
上传插件(含获取缩略图方法): https://github.com/rongcloud/rongcloud-web-im-upload
缩略图必须是base64码的jpg图,而且不带前缀"data:image/jpeg;base64,",不得超过100K
压缩:https://github.com/rongcloud/rongcloud-web-im-upload/blob/master/resize.html
*/
var content = {
imageUri: "http://rongcloud.cn/images/newVersion/log_wx.png",
content: getBase64Image()
};
var msg = new RongIMLib.ImageMessage(content);
var start = new Date().getTime();
instance.sendMessage(conversationType, targetId, msg, {
onSuccess: function (message) {
markMessage(message);
showResult("发送图片消息 成功",message,start);
},
onError: function (errorCode,message) {
showResult("发送图片消息 失败",message,start);
}
});
}
function sendFileMessage(){
/*
文档:http://www.rongcloud.cn/docs/api/js/ImageMessage.html
upload组件:https://github.com/rongcloud/rongcloud-web-im-upload
上传插件文档: http://rongcloud.cn/docs/web.html#上传插件
单条消息整体不得大于128K
文件消息分两步:
1、上传文件至文件服务器
2、发送文件信息和文件 URL
*/
var content = {
name: 'log_wx', // 文件名称
size: '20k', // 文件大小,单位自己约定
type: 'png', // 文件的后缀名,例如 png、js、doc ...
fileUrl: 'http://rongcloud.cn/images/newVersion/log_wx.png' // 文件地址
};
var msg = new RongIMLib.FileMessage(content);
var start = new Date().getTime();
instance.sendMessage(conversationType, targetId, msg, {
onSuccess: function (message) {
markMessage(message);
showResult("发送文件消息成功",message,start);
},
onError: function (errorCode,message) {
showResult("发送文件消息失败",message,start);
}
});
}
function sendVoiceMessage(){
/*
文档:http://www.rongcloud.cn/docs/api/js/VoiceMessage.html
需自行解决录音和转码问题,要求编码为base64格式amr,不带前缀,不得超过100K
声音播放:https://rongcloud.github.io/websdk-demo/voice.html
*/
var content = {
content : voice, //form res/voice-amr-base64.json
duration : 20
};
var msg = new RongIMLib.VoiceMessage(content);
var start = new Date().getTime();
instance.sendMessage(conversationType, targetId, msg, {
onSuccess: function (message) {
markMessage(message);
showResult("发送语音消息成功",message,start);
},
onError: function (errorCode,message) {
showResult("发送语音消息失败",message,start);
}
});
}
function sendAtMessage(){
/*
@ 消息对象
全部:RongIMLib.MentionedType.ALL;
部分:RongIMLib.MentionedType.PART
文档说明:http://support.rongcloud.cn/kb/NjE1
接收@代码:https://rongcloud.github.io/websdk-demo/connect-check.html
*/
var mentioneds = new RongIMLib.MentionedInfo();
mentioneds.type = RongIMLib.MentionedType.PART;
mentioneds.userIdList = [targetId, targetId2];
var content = {
content: "This is a at message!",
extra: "extra info",
mentionedInfo: mentioneds
};
var msg = new RongIMLib.TextMessage(content);
var start = new Date().getTime();
instance.sendMessage(conversationType, targetId, msg, {
onSuccess: function (message) {
//message 为发送的消息对象并且包含服务器返回的消息唯一Id和发送消息时间戳
showResult("发送 @ 消息成功",message,start);
},
onError: function (errorCode,message) {
showResult("发送 @ 消息失败",message,start);
}
}, true);
}
function registerMessage(type,propertys){
var messageName = type; // 消息名称。
var objectName = "s:" + type; // 消息内置名称,请按照此格式命名 *:* 。
var mesasgeTag = new RongIMLib.MessageTag(true,true); //true true 保存且计数,false false 不保存不计数。
RongIMClient.registerMessageType(messageName,objectName,mesasgeTag,propertys);
}
function sendRegisterMessage(){
/*
文档:http://www.rongcloud.cn/docs/web_api_demo.html#自定义消息
注意事项:
1:init之前注册新消息类型
2:对应接收 onReceived: function (message) {}
message.messageType == "PersonMessage"
3:需要自己做解析实现
*/
var propertys = ["name","age","gender"]; // 消息类中的属性名。
registerMessage("PersonMessage",propertys);
var content = {
name: {
"first" : "Bob",
"last" : "Smith"
},
age: 3,
gender: "male"
};
var msg = new RongIMClient.RegisterMessage.PersonMessage(content);
var start = new Date().getTime();
instance.sendMessage(conversationType, targetId, msg, {
onSuccess: function (message) {
markMessage(message);
showResult("发送自定义消息成功",message,start);
},
onError: function (errorCode,message) {
showResult("发送自定义消息失败",message,start);
}
});
}
function sendLocationMessage(){
/*
文档:http://www.rongcloud.cn/docs/api/js/LocationMessage.html
缩略图必须是base64码的jpg图,而且不带前缀"data:image/jpeg;base64,",不得超过100K
需要自己做显示效果,一般显示逻辑:图片加链接,传入经纬度并跳转进入地图网站
*/
var content = {
"content":getBase64Image(),
"latitude":"24.114",
"longitude":"334.221",
"poi":"北京市朝阳区北苑路北辰泰岳大厦"
};
var msg = new RongIMLib.LocationMessage(content);
var start = new Date().getTime();
instance.sendMessage(conversationType, targetId, msg, {
onSuccess: function (message) {
markMessage(message);
showResult("发送自定义消息成功",message,start);
},
onError: function (errorCode,message) {
showResult("发送自定义消息失败",message,start);
}
});
}
function sendRichContentMessage(){
/*
http://www.rongcloud.cn/docs/api/js/RichContentMessage.html
*/
var content = {
"title": "sendRichContentMessage",
"content": "<a href=\"http://www.rongcloud.cn\">hello</a>",
"imageUri": "http://www.demo.com/1.jpg",
"url": "http://www.rongcloud.cn/",
"extra": "{\"key\":\"value\"}"
};
var msg = new RongIMLib.RichContentMessage(content);
var start = new Date().getTime();
instance.sendMessage(conversationType, targetId, msg, {
onSuccess: function (message) {
markMessage(message);
showResult("发送图文消息成功", message, start);
},
onError: function (errorCode,message) {
showResult("发送图文消息失败", message, start);
}
});
}
function SendSyncReadStatusMessage(){
/*
一端发送,其他端接受并做同步更新
具体处理说明文档: http://support.rongcloud.cn/kb/NjE0
*/
var sentTime = 1486975569605;// message 的 sentTime 服务器端时间
var content = {
lastMessageSendTime: sentTime
};
var msg = new RongIMLib.SyncReadStatusMessage(content);
var start = new Date().getTime();
instance.sendMessage(conversationType, targetId, msg, {
onSuccess: function (message) {
showResult("发送同步消息成功", message, start);
},
onError: function (errorCode,message) {
showResult("发送同步消息失败", message, start);
}
});
}
function sendRecallMessage(){
if(recallMessage == null){
alert("请先发送任意一条消息会再执行撤回");
return;
}
//消息撤回服务器端没有时间限制,由客户端决定
var start = new Date().getTime();
instance.sendRecallMessage(recallMessage, {
onSuccess: function (message) {
showResult("撤回成功",message,start);
},
onError: function (errorCode,message) {
showResult("撤回失败",message,start);
}
});
}
function checkUnreadMessage(){
/*
http://www.rongcloud.cn/docs/web.html#5_5、检测是否有未读的消息
此接口必须在init()方法之后调用,但不依赖于connect
只返回true/false,不返回具体的未读数量
若连接成功后调用此方法将一直返回 false。
*/
var start = new Date().getTime();
instance.hasRemoteUnreadMessages(token,{
onSuccess:function(hasMessage){
if(hasMessage){
// 有未读的消息
}else{
// 没有未读的消息
}
showResult("检查未读消息成功",hasMessage,start);
},onError:function(err){
showResult("检查未读消息失败",err,start);
}
});
}
function getHistroyMessage(){
/*
文档:http://www.rongcloud.cn/docs/web_api_demo.html#获取历史消息
注意事项:
1:一定一定一定要先开通 历史消息云存储 功能,本服务收费,测试环境可免费开通
2:登录开发者后台可以直接开启 https://developer.rongcloud.cn/app
2:timestrap第二次拉取必须为null才能实现循环拉取
*/
var count = 3; // 2 <= count <= 20
var timestrap = null; //0, 1483950413013
var start = new Date().getTime();
instance.getHistoryMessages(conversationType, targetId, timestrap, count, {
onSuccess: function(list, hasMsg) {
//可通过sort订制其他顺序
list.sort(function(a,b){
return a.sentTime < b.sentTime;
});
showResult("获取历史消息成功",list,start);
},
onError: function(error) {
showResult("获取历史消息失败",error,start);
}
});
}
function clearHistroyMessage(){
/*
文档:http://www.rongcloud.cn/docs/web_api_demo.html#会话接口
注意事项:必须开通历史消息云存储
参数说明:
timestamp 取值范围: timestamp >=0 并且 timestamp <= 当前会话最后一条消息的 sentTime
*/
if (!clearMessage) {
alert('请先发一条消息');
return;
}
var start = new Date().getTime();
var params = {
conversationType: clearMessage.conversationType,
targetId: clearMessage.targetId,
timestamp: clearMessage.sentTime
};
instance.clearRemoteHistoryMessages(params, {
onSuccess: function() {
showResult("清除历史消息成功", "success");
},
onError: function(error) {
console.log('请排查: 历史消息云存储是否开通');
showResult("清除历史消息失败",error);
}
});
}
function getConversationList(){
/*
文档:http://www.rongcloud.cn/docs/web_api_demo.html#会话接口
http://www.rongcloud.cn/docs/web.html#5_2、同步会话列表
http://www.rongcloud.cn/docs/api/js/Conversation.html
历史消息云存储开通位置:https://developer.rongcloud.cn/service/roam/rXxI4IAJjxRAD72SpQ==
注意事项:
1:一定一定一定要先开通 历史消息云存储 功能,本服务收费,测试环境可免费开通
2:只有发过消息才能生成会话
*/
var conversationTypes = null; //具体格式设置需要补充
var limit = 150; //获取会话的数量,不传或传null为全部,暂不支持分页
var start = new Date().getTime();
instance.getConversationList({
onSuccess: function(list) {
// list.sort(function(a,b){
// return a.sentTime > b.sentTime;
// });
var title = "成功获取 " + list.length + " 个会话";
showResult(title,list,start);
},
onError: function(error) {
showResult("获取会话失败",error,start);
}
}, conversationTypes, limit);
}
function getConversation(){
//需在 getConversationList 方法执行之后执行,否则返回null
var start = new Date().getTime();
instance.getConversation(conversationType, targetId, {
onSuccess:function(result){
showResult("获取群组会话 成功", result, start);
},
onError:function(error){
showResult("获取群组会话 失败", error, start);
}
});
}
function removeConversation(){
var start = new Date().getTime();
instance.removeConversation(conversationType, targetId, {
onSuccess:function(result){
showResult("删除会话成功",result,start);
},
onError:function(error){
// error => 清除会话错误码。
showResult("删除会话失败",error,start);
}
});
}
function clearConversation(){
var start = new Date().getTime();
instance.clearConversations({
onSuccess:function(){
showResult("清除会话成功",null,start);
},
onError:function(error){
// error => 清除会话错误码。
showResult("清除会话失败",error,start);
}
});
}
function getUnreadCount(){
/*
阅读时间戳缓存在 localStorage 中,消息状态根据发送时间和阅读时间戳对比判断
每次接受新消息后通过重新调用此方法计算
*/
var start = new Date().getTime();
instance.getUnreadCount(conversationType,targetId,{
onSuccess:function(count){
showResult("获取会话未读数成功", count, start);
},
onError:function(error){
showResult("获取会话未读数失败", error, start);
}
});
}
function getTotalUnreadCount(){
/*
阅读时间戳缓存在 localStorage 中,消息状态根据发送时间和阅读时间戳对比判断
每次接受新消息后通过重新调用此方法计算
*/
var start = new Date().getTime();
instance.getTotalUnreadCount({
onSuccess:function(count){
showResult("获取总未读数成功", count, start);
},
onError:function(error){
showResult("获取总未读数失败", error, start);
}
});
}
function clearTotalUnreadCount(){
var start = Date.now();
instance.clearTotalUnreadCount({
onSuccess:function(){
showResult("清除未读总数成功", "success", start);
},
onError:function(error){
showResult("清除未读总数失败", error, start);
}
});
}
function clearUnreadCount(){
/*
此方法清除当前端的未读数,并不会多端同步,
多端同步需要发送 SyncReadStatusMessage:http://support.rongcloud.cn/kb/NjE0
*/
var start = Date.now();
instance.clearUnreadCount(conversationType,targetId,{
onSuccess:function(){
showResult("清除指定会话未读数成功", "success", start);
},
onError:function(error){
showResult("清除指定会话未读数失败", error, start);
}
});
}
function receiveMessage(){
alert("请见init方法里的 RongIMClient.setOnReceiveMessageListener")
}
//加入聊天室后,可以用任意一个发送消息的方法发送消息,只需要conversationType为CHATROOM
var chatRoomId = "chatRoomId-008"; // 聊天室 Id,可任意指定,能区分不同聊天室即可
var count = 10; //拉取最近的会话内容(最多50条),-1不拉取
function enterChatroom(){
/*
http://www.rongcloud.cn/docs/web_api_demo.html#聊天室
聊天室不支持通过 getHistoryMessages 方法获取历史消息,
count://拉取最近的会话内容(最多50条),-1不拉取
*/
var start = new Date().getTime();
instance.joinChatRoom(chatRoomId, count, {
onSuccess: function() {
showResult("加入聊天室成功",null,start);
},
onError: function(error) {
showResult("加入聊天室失败",null,start);
}
});
}
function quitChatroom(){
var start = new Date().getTime();
instance.quitChatRoom(chatRoomId, {
onSuccess: function() {
showResult("退出聊天室成功",null,start);
},
onError: function(error) {
showResult("退出聊天室失败",null,start);
}
});
}
function getChatroomInfo(){
/*
需确认 当前用户 已加入聊天室
*/
var order = RongIMLib.GetChatRoomType.REVERSE;// 排序方式。
var memberCount = 10; // 获取聊天室人数 (范围 0-20 )
var start = new Date().getTime();
instance.getChatRoomInfo(chatRoomId, memberCount, order, {
onSuccess: function(chatRoom) {
// chatRoom => 聊天室信息。
// chatRoom.userInfos => 返回聊天室成员。
// chatRoom.userTotalNums => 当前聊天室总人数。
showResult("获取聊天室信息成功",chatRoom,start);
},
onError: function(error) {
showResult("获取天室信息失败",error);
}
});
}
function sendMessageToChatroom(){
var content = {
content:"hello,time:" + new Date().getTime(),
extra:"RongCloud"
};
var conversationType = RongIMLib.ConversationType.CHATROOM; // 私聊
var msg = new RongIMLib.TextMessage(content);