Questions tagged [twilio-programmable-chat]

For questions about Twilio's text chat APIs. This is distinct from their voice chat or SMS messaging APIs, which should be tagged as "twilio-api".

Programmable Chat which is part of Twilio solutions:

Add chat to any app with SDKs for mobile and web. Powered by the Twilio cloud.

Site: https://www.twilio.com/chat

Docs: https://www.twilio.com/docs/api/chat

383 questions
1
vote
1 answer

Twilio Android Chat Client function 'getSubscribedChannels()' returns incomplete channels

I'm developing an android chat client that uses the Twilio Programmable Chat Client SDK. I am trying to get a list of the channels the current user as joined, using the following function: List channels =…
Agosto
  • 13
  • 2
1
vote
1 answer

How can i show app name in place of twilio generated number in my sms

I am using Twilio programmable SMS, so when I receive a message it shows +123123 like some random number so is there any way that I can show my custom app name instead of Twilio generated id.I also searched for it but not get an answer.
Muhammad Shareyar
  • 772
  • 2
  • 7
  • 21
1
vote
1 answer

Is it possible to use the Programmable Chat SDK without FCM?

My situation is the following: I'm working on a custom version of Android (I'm not the author of it) which does not support google-services (or I haven't found yet a compatible version of them) so I can't use FCM for Push Notifications. Is FCM…
1
vote
1 answer

Initiate twilio flex chat using node.js

I am having difficulty getting twilio flex to show messages created using the API using node.js. I am creating a channel, adding a member, creating a message on the channel using the member. The flex dashboard shows the incoming chat request in the…
1
vote
0 answers

Video chat windows is not display /reactjs with twillio

I have developed a video chat using Reactjs with twillio. In my project I have to develop two sides ,for one side the chat application run smoothly, but in other one the camera is powered on but video stream does not display(local-media not updating…
Vision123
  • 129
  • 1
  • 4
1
vote
0 answers

"Unable to establish connection to Twilio Sync service" error

I initialized my twilio client in the code below but I am getting an error Unable to establish connection to Twilio Sync service My code: public void build(String token, TaskCompletionListener listener) { …
1
vote
2 answers

How to do pagination on channels in twilio-programmable-chat?

I am using twilio javascript sdk for twilio-programmable-chat. And I want to apply pagination to my channels result but I am not able to figure it out. Here is my current code. this.chatClient.getUserChannelDescriptors().then(paginator => { //…
Muneeb
  • 1,469
  • 16
  • 24
1
vote
2 answers

How may I receive FB messenger messages in Flex Agent Console

I'm trying to use Messenger channel in a Flex instance, however, I haven't been able to make it work. The closest I've got is using at the Facebook channel configuration the function url INBOUND MESSAGE as callback url, this way I receive the…
1
vote
1 answer

Error logging in :Error 0:1401 unable to establish connection to twilio sync service - Android

So here is my problem: I generate a ChatClient instance using my token,I want to join the one with the SID received that's not succeed and I got the following error 2019-01-25 16:37:17.812 15294-15294/com.twilio.chat.demo E/TwilioApplication: Login…
sam chaudhari
  • 756
  • 1
  • 12
  • 24
1
vote
1 answer

Twilio REST BindingResource Error "Could not match service instance to account"

I am trying to create a new BindingResource for FCM but it returns "Could not match service instance to account" This is my code var binding = BindingResource.Create( pathServiceSid: "ISXXXXservice_sid", identity: TwilioHelper.Identity, …
jaysonragasa
  • 1,076
  • 1
  • 20
  • 40
1
vote
0 answers

Twilio sdk working in Debug version , but fails in release version. Check logs below

I checked everything regarding multidex. Help me out!
Arpit
  • 297
  • 1
  • 5
  • 13
1
vote
1 answer

Twilio - channel descriptor paginator order

I want to retrieve the list of channels for a user containing unread messages. The best solution I have found so far (please correct me if I'm wrong) is using channel descriptors. // Example for a single…
1
vote
0 answers

Webpack 3.10.0 cant minify the line: return [`${new Date().toISOString()} Twilsock ${prefix}:`].concat(Array.from(args));

I am having a hard time completely understanding Webpack, so this might be a terrible question. I have recently ejected from the create-react-app. I get the error: Failed to minify the code from this file: ./node_modules/twilsock/lib/logger.js:5…
1
vote
1 answer

How to Receive Replies for Twilio SMS

I've successfully configured Twilio on console as well as in my Salesoforce web application to send SMS to a given(authorized) mobile number. However I'm unable to find the proper way to find How my clients can reply to the SMSs they receive How I…
highfive
  • 628
  • 3
  • 12
  • 31
1
vote
1 answer

Unregister channel listener

I have a list with twilio chat channels that the user is subscribed to. When a user clicks on one of these channels, the chat opens, messages are loaded, and the user subscribes to get new messages using this.state.channel.on('messageAdded', message…
boydenhartog
  • 752
  • 2
  • 9
  • 22