twilio-chat-console-webapp.js
twilio-chat-console-webapp.js copied to clipboard
Web Console example app for Twilio Programmable Chat with working push messages
Results
1
twilio-chat-console-webapp.js issues
Sort by
recently updated
recently updated
newest added
` var formData = new FormData(); formData.append('file', $(this)[0].files[0]); for (var data of formData) { console.log(data); } if (formData) { chatClient.getChannelBySid(activeChannel.sid).then(function (channel) { channel.sendMessage(formData); }); } ` Uncaught (in promise) TypeError:...