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

How to get Unconsumed message count

Hello I am integrating Twilio on android and I need to display unconsumed message count with the channel name below is my code snippet but every time I'm getting count zero(0) please help me channel.getUnconsumedMessagesCount(new…
0
votes
1 answer

Twilo chat (JavaScript API): Unable to delete a channel by its creator after reconnecting to the same channel

I performed the following steps: Connect to the app as client (for eg. with name Adam). Add a new channel (for eg. with name Channel1). Leave the channel. Again, reconnect to app (as Adam). Delete the channel (Channel1). I am getting the following…
0
votes
1 answer

Twilio Programmable Chat API - Updating member channel role

Is it possible to update role of a member within the channel by providing Role friendly name instead of Role SID? The reason I'm asking this is because I would like to avoid storing any generated identifiers on my end and to keep only friendly…
svlada
  • 3,218
  • 2
  • 25
  • 36
0
votes
0 answers

how to call from one twilio account phone number to another twilio account phone number?

Currently I am having 2 free trail twilio account. So I have 2 phone numbers, I per each account. these 2 phone numbers are verified by each other. So How to make a call from 1 twilio account phone number to another twilio phone number?
0
votes
1 answer

twilio REST API: strictly backend?

The JavaScript chat client SDK is missing some functionality that the REST API has, like list users. Should the 1st person chat client be using the REST API as well to supplement gaps in the client SDK or just in general? Or is it strictly for…
Wilhelmina Lohan
  • 2,803
  • 2
  • 29
  • 58
0
votes
1 answer

Twilio Programmable Chat without invitations

I've been developing a chat feature for our Android and iOS apps using the Twilio Programmable Chat, but I cannot find the option to create and add a person to the new channel, without having the other user to accept the invitation first. Is there…
0
votes
1 answer

Why Twilio receiving only blank body if we send images/media from my mobile via WhatsApp application?

[twilio] [twilio-whatsapp] I have successfully integrated Whastsapp beta provided by twilio and sending and receiving text working perfectly. Moreover with the one trick I am also able to send images from twilio to whtasapp but reverse flow is not…
Parag Soni
  • 713
  • 7
  • 14
0
votes
1 answer

Programmable Chat Media Filename (JS)

The Media Support docs it mentions that when sending media you can: "Optionally specify a default download filename to help your application display the media to other users.". This is done using messagingOptions in Swift however in JS I cannot find…
JavanPoirier
  • 442
  • 3
  • 9
0
votes
1 answer

Does Twilio chat support recording audio messages

We are using Twilio chat in one of our website and some users are asking if it is possible to record audio recordings to be sent as chat messages (like it happens on Whatsapp and other chatting App). Does Twilio API support this kind of messages ?
0
votes
1 answer

Join a channel in Programmable chat on Twilio as channel admin to send media in message

I am trying to send media messages in programmable chat on Twilio. But as per the docs, only Channel admin and Channel user roles can send media messages. When I create my chatClient, it automatically assigns them with Service admin and Service User…
Kunal-KP
  • 1
  • 2
0
votes
0 answers

Twilio - Issue creating Client using token

I am new to Twilio and Angular! I am creating a Twilio Client in Angular2 using Twilio Token which I am getting from the server. But I am getting below error. I have already installed NuGet packages for Twilio-chat. Code to create Twilio…
Manthan Makani
  • 119
  • 1
  • 6
0
votes
0 answers

Adding persistent updates to channels in Twilio Programmable Chat

We have recently implemented group chat functionality for an existing application using Twilio Programmable Chat. Context: The application allows users to connect with each other and join groups. We are using Twilio to add a real-time chat room…
bsr92
  • 1
  • 1
0
votes
1 answer

How to change reply of message based message sent from client in Twilio using Node.js?

I am trying to make an SMS conversation platform where a user would enter yes or no which will work as a boolean check and on true Twilio server will reply with 'response 1' and on false Twilio, the server will reply with 'response 2'? How will that…
Ayan Saraf
  • 113
  • 1
  • 2
  • 8
0
votes
1 answer

Twilio Programmable Chat - Connection dropped from JS client

I have a React app that uses the Twilio Programmable Chat library to provide chat functionality. The setup code generally looks like this, all wrapped in a try/catch block: this.accessManager = new AccessManager(twilioToken.token); const…
0
votes
1 answer

Delegate methods for typing indicator on Twilio chat not being called

Working on a Swift chat application. On one device, I join a channel with unique name "private:chat", and then I call channel.typing() on the channel (as is mention in docs). On another device, I again create a client with a delegate set to…
Milan Nosáľ
  • 19,169
  • 4
  • 55
  • 90