0.0.8 • Published 2 years ago

cordova-plugin-qidaim v0.0.8

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

调用企达IM插件

初始化IM

cordova.plugins.QidaIM.init({
    server: '218.x.x.x',
    port: 5771,
    account: 'xxx',
    password: 'yyy',
}, function() {
    alert('初始化成功');
}, function(err) {
    console.log(err);
    alert('初始化失败');
});

打开IM对话列表

cordova.plugins.QidaIM.startIM({}, function() {

}, function() {

})