I just perform one test demo & created one channel & send messages on the channel.
I am getting error- Cannot assign to read-only property ‘lastMessage’ of object ‘#’
What I am using
Twilio-chat for mobile - "twilio-chat": "^4.1.0"
Twilio for node js backend - https://www.npmjs.com/package/twilio (version - ^3.30.0)
Please let me know now what am I doing wrong??
// twilio token
// sample code
TwilioChatClient.create(token).then(newClient => {
newClient.createChannel({
isPrivate: false,
uniqueName: 'Mychannel',
friendlyName: 'test user',
})
.then((channel1) => {
channel1.join().then(rr => {
channel1.sendMessage('Hello')
})
}).catch(() => {
newClient.getChannelByUniqueName('Mychannel')
.then((chalOne) => {
chalOne.join().then(rr => {
chalOne.sendMessage('Hello')
})
})
})
})
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…