我正在尝试使用组频道在 2 个 sendbird 用户之间创建一个频道。到目前为止,我的实现是
<script type="text/javascript">
function chatInit(){
var sb = new SendBird({
appId: 'my app id'
});
sb.connect('test user','access token of user', function(user, error) {
console.log(error);
});
var userIds = ['another user'];
var name ="name of channel";
sb.GroupChannel.createChannelWithUserIds(userIds, true, name ,'', '', function(channel, error) {
if (error) {
console.error(error);
return;
}
});
}
</script>
我在控制台上收到以下错误
SendBird.min.js:6 Uncaught TypeError: Cannot read property 'userId' of null
at Function.GroupChannel.createChannelWithUserIds
我错过了什么,请指导我完成整个过程。任何和所有的帮助将不胜感激。