|
发表于 2017-4-13 13:29:52
|
显示全部楼层
im.impl.js
-----------------------------------------------------------------------
- sendTextMessage : function(peer, text) {
- return _api().sendTextMessage(peer, text);
- },
- sendPhotoMessage : function(peer, photo) {
- return _api().sendPhotoMessage(peer, photo);
- },
- sendVoiceMessage : function(peer, duration, voice) {// 目前使用发送fileMessage的实现,sendVoiceMessage目前使用opus格式
- return _api().sendVoiceMessage(peer, duration, voice);
- },
- sendFileMessage : function(peer, file) {
- return _api().sendFileMessage(peer, file);
- },
- sendClipboardPhotoMessage : function(peer, photo) {
- return _api().sendClipboardPhotoMessage(peer, photo);
- }
复制代码 |
|