SDK 默认指向公有云地址,在部署私有云后,需要将地址重新指向到新的地址,以下是地址修改方法:
WebIM.conn = new websdk.connection({
isHttpDNS: false, // 关闭DNS动态域名
url: 'http://im-api-v2.easemob.com/ws', // 设置为私有云的websocket server url
apiUrl: 'http://a1.easemob.com' // 设置为私有云的rest server url
})
注意:如果需要配置https只需将url、apiUrl指定为https协议:
WebIM.conn = new websdk.connection({
isHttpDNS: false, // 关闭DNS动态域名
url: 'https://im-api-v2.easemob.com/ws',
apiUrl: 'https://a1.easemob.com'
})