Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
363 views
in Technique[技术] by (71.8m points)

node.js - Getting error - Cannot assign to read only property ‘lastMessage’ of object ‘#<Object>’ in twilio-chat

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')
      })
    })
  })
})

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...