Questions tagged [twilio-conversations]

Twilio Conversations is an API for building multi-channel conversation-applications using Twilio platform services for a unified communication using chat, SMS, whatsapp, etc.

137 questions
5
votes
1 answer

Flutter bloc chat is not refreshing after sending message

I'm new to bloc and trying to implement a chat with flutter_bloc package. The service for my messaging is twilio conversations api. My function works perfectly fine, Im simply not able to refresh my list of messages. Could somebody show me what I'm…
4
votes
3 answers

Client.getConversationByUniqueName and Client.getConversationBySid cannot find conversations created by other users

Note: I'm using @twilio/conversations version 1.1.0 in node project. I'm transitioning from using Programmable Chat to Conversations. I'm seeing calls to Client.getConversationByUniqueName and Client.getConversationBySid are not returning existing…
mwest-cs
  • 41
  • 2
4
votes
0 answers

Twilio JS Client getChannelBySid Error - Forbidden

I'm using Twilio's JS client. The client requires an Access Token that I create with the following code and push to the front-end. def generate_chat_token(self, identity, service_sid): """ Generate a jwt chat token. """ # Get a…
3
votes
1 answer

Twilio Conversations Group MMS not working

I have a Twilio Trial account with a number that has SMS/MMS enabled. I want to use the number in a group MMS chat. I have a very basic test that I created after following the tutorial on Tut The two numbers I'm attempting to send to have been…
user2402616
  • 1,434
  • 4
  • 22
  • 38
3
votes
1 answer

Should we use separate services for each tenant?

We produce enterprise-software (ie, B2B) that is used by multiple companies. We are using Twilio Conversations in order to allow our users to chat with other users working within the same company. We have no plans of allowing users from different…
RvPr
  • 1,074
  • 1
  • 9
  • 26
3
votes
2 answers

Not able to add friendly name to participants when creating participant with conversation

I am using twilio for creating an chat API using conversion API (Twilio), I was able to create the converstaion and add new participant to the converstion, But when I try to add friendly name to participant, Its not…
Akhil M
  • 544
  • 6
  • 8
3
votes
2 answers

Is there a library to use twilio-conversations in React Native?

I've been researching how I can do App-Chat with twilio-conversations in react native, but I haven't found anything that can help me.
2
votes
1 answer

Difference between Programmable Messaging API and Conversational API

In Twilio, Both of the APIs are essentially made for programmable messaging, then what exactly is the difference? Both of the API's can be used for A2P messaging, integrating with Bots, extending communication use cases. Conversations API is said to…
hydroweaver
  • 109
  • 9
2
votes
0 answers

How can I get live updates of all users' online/offline status in Twilio Conversations SDK Android?

I am making a chat feature in the android app using Conversations SDK. The reachability is enabled from the backend side. I try to get live updates of the online/offline status of all the users. But the flow doesn't come in onUserUpdated() method of…
2
votes
1 answer

Invalid Content-Type: The retrieved media has an incorrect Content-Type

I am using twilio to try and send an MMS message. The twilio server needs my to send my png image so it can save it in their db and send me a unique Id to access that png. I am testing this feature as a newbie. I have tried sending the png image as…
KingJoeffrey
  • 303
  • 5
  • 16
2
votes
1 answer

Twilio Conversation LastReadMessageIndex Always null when you get connect with client first time

I am using twilio conversation api for chat application. I have enabled read horizon from settings. I am marking message read index and also getting unread count. But when I refresh the page lastMessageRead index is always null. I have added…
2
votes
2 answers

Twilio Conversations - How to Create a new Conversation NOT in default service API

I can simply create a new Conversation using the default Conversation Service using Twilio.Rest.Conversations.V1.Create() but how do I create a new Conversation using a particular (non-default) Conversation Service using the API? I can fetch the…
Law
  • 21
  • 1
2
votes
1 answer

Unable to get channel with channel ID using new Conversations API

After the migration to new Conversations API, When tried to fetch a channel with channel ID, I get the following error: - code: 102; text: Conversation with given sid not found. Here are the steps I followed: First,…
Rups
  • 21
  • 5
2
votes
1 answer

How to listen for messages on a single channel in Twilio Programmable Chat

Using twilio-chat.js how can I listen for messages on a single channel? I found this question which asks how to listen on multiple channels, but I can't find anything describing how to do this on a single channel. (Where token is an Access…
1
vote
0 answers

How to know who the SMS Participants are in a Twilio Conversation?

I am using the conversations API and I can add SMS participants to a conversation via my Twilio Number. Both parties can communicate through their devices via Twilio Conversations. Is there a way to show who's talking in the SMS message from Twilio…
Tim Glenn
  • 224
  • 2
  • 8
1
2 3
9 10