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
0
votes
2 answers

What is the best way to get unread messages count for each channel in Twilio using android?

I am trying to get unread messages count for each channel of the user. After referring Twilio Doc For getting unread count, I found that this is a very complex way to get the message for each channel if channel count is large. My question is that it…
Maraj Hussain
  • 1,580
  • 10
  • 26
0
votes
1 answer

Show system messages in conversation history using iOS Twilio SDK

Hi I have been working on one of my apps for integrating chat using Twilio SDK. I would want to know if it is possible to get the system message inside a channel for eg: 'Member A joined the channel', 'Member B left the channel', 'Member C accepted…
Mohammed Shakeer
  • 1,446
  • 16
  • 23
0
votes
0 answers

Does Twilio Chat has `onUserAddded` event on webhook?

I want to use onUserAdded for tracking metrics, but seems not to be firing even though it is listed on chat instance webhook settings. It does not exist though on docs which necessitated this question.
kabangi julius
  • 2,709
  • 2
  • 16
  • 25
0
votes
1 answer

How can I invite a user to a newly created private chat channel using the Twilio Python Client?

How can I invite a user to a newly created private chat channel using the Twilio Python Client? The python channel instance does not have an channel.invite() method like the JS SDK does. I have looked through the source code as well but can't seem…
rkp333
  • 341
  • 3
  • 11
0
votes
2 answers

How to receive an event notification, like "channelAdded", when a new public channel is created

How can I listen for the creation of any new public channel on a chat service? I have seen client.channelAdded but it only works for private channels. channelAdded Fired when a Channel becomes visible to the Client. Fired for created and not…
rkp333
  • 341
  • 3
  • 11
0
votes
1 answer

Module parse failed:filename.jsx,You may need an appropriate loader to handle this file type

I want integrate a twilio chat in my reactjs app. For that I am using "twilio-ip-messaging-react" package. I have installed it. when I run the app I am getting following error. ./~/twilio-ip-messaging-react/ip_chat_client.jsx Module parse failed:…
neelima
  • 461
  • 10
  • 25
0
votes
1 answer

Crash during Twilio chat client shutdown on Android 8.0 (API 26, Oreo)

On Android 8.0, I am getting a consistent crash when calling client.shutdown(), with the following error message: A/libc: invalid pthread_t 0x7dd83384f0 passed to libc A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 28040 (RxCachedThreadS) The…
pdv
  • 1
  • 1
0
votes
1 answer

Twilio Chat - How do i display upload progress of media?

I am trying to upload a picture to a channel using the code in this link: const formData = new FormData(); formData.append('file', $('#formInputFile')[0].files[0]); // get desired channel (for example, with getChannelBySid…
Koder
  • 1,794
  • 3
  • 22
  • 41
0
votes
1 answer

Twilio Chat - Joining a user to a channel with identity and friendlyName

How do i create a user and join that user into a channel with a friendly name ? All the examples in the documentation located here assumes that a user with appropriate friendlyName is already present in the service instance. So, if i want to join a…
Koder
  • 1,794
  • 3
  • 22
  • 41
0
votes
1 answer

Twilio iOS Chat client initialization never completes

I am having trouble with the Twilio iOS chat client. In short, when I try to create a chat client, the process begins but never completes. I make a call to TwilioChatClient.chatClientWithToken:properties:delegate:completion:, and the completion…
0
votes
1 answer

Get invited users from Twilio Channel

I have a Twilio channel and I'm trying to get its invited users, but I'm not sure how to do this: let messagingClient = this.state.messagingClient; messagingClient.getUserChannelDescriptors().then(channels => { let channelsHash =…
Alex
  • 3,946
  • 11
  • 38
  • 66
-1
votes
2 answers

how to implement Twilio Programmable Conversations in ios swift?

i don't know how can i start Twilio Programmable Conversations in ios swift application and what would be steps for it and there is change this program programmable chat to programmable conversations and there not open…
-1
votes
1 answer

Twilio Whatsapp chatbot no response

I am trying to create a connection to whatsapp and my python script via Twilio, to generate automatic conversations. I follow every step in order of this link…
-1
votes
1 answer

How to create a List message for whatsapp using Twilio

How to create a List message for whatsapp using Twilio How to create a List message for whatsapp using Twilio
-1
votes
1 answer

How to add member to conversation/channel using twilio-conversation in react-native?

How to add member to conversation/channel using twilio-conversation in react-native ? React Native JavaScript SDK. conversation.add(chatUserId) add() not working, giving Bad Request error
1 2 3
25
26