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

Why isn't Twilio's ConversationListener.onParticipantAdded triggered when user joins in?

I'm developing one app that uses Twilio for video calls and chats. The problem I'm having is that onParticipantAdded is never triggered, even though I successfully register ConversationListener. I know that I've successfully registered…
Ban Markovic
  • 690
  • 1
  • 7
  • 12
0
votes
1 answer

can i check online or offline user with twilio

I am using twilio conversations for chat. Can I get information about whether the user is offline or online? I did not find any information on this in the documentation
TS E
  • 5
  • 1
0
votes
1 answer

Twilio Conversation: SessionError: Channel not found when marking messages as read

I am using @twilio/conversations": "^1.2.3" nodejs package my project. I have a conversation which has two participants one is sms and the other is web. When I am calling setAllMessagesRead() I got error No channel found. Both participants exist it…
Ghazanfar Khan
  • 3,648
  • 8
  • 44
  • 89
0
votes
2 answers

Twilio Conversations API || Post-Event URL Be Dynamic to the Conversation SID

I have the Pre-Event Url correct which will send a POST request to add everything i need. But I need to try to get a dynamic url for the Post-Event URL, when I want to view the conversation, for…
0
votes
1 answer

Twilio Conversation: Handling of old messages when a new conversation is created out of Closed Conversation

In twilio conversation documentation, it says- If new message comes into closed Conversation, a new Conversation will be auto-created with the Participant who initiated the Conversation. At this point, there is no automatic addition of other…
tsikka
  • 191
  • 6
0
votes
1 answer

Twilio Conversations API - unable to fetch record

I am trying to fetch a conversation following Twilio documentation verbatim here. import os from twilio.rest import Client # Find your Account SID and Auth Token at twilio.com/console # and set the environment variables. See…
MweyaMutsvene
  • 543
  • 4
  • 15
0
votes
1 answer

Errors when i try use twilio/conversations in React Native

When I try to use Twilio Conversations in React Native I get errors.
TS E
  • 5
  • 1
0
votes
1 answer

Twilio Conversations - Do closed conversations count towards the channels per identity limit

In the Twilio docs, there is an option to set the state of a conversation from active, inactive, or closed. It says "Be aware that closed Conversations do not count towards the Participant-per-Conversation limit." However, I am not sure if a closed…
handroski
  • 81
  • 2
  • 3
  • 15
0
votes
1 answer

How to get participants for a conversation in Twilio

I'm using the Twilio Conversations Client for iOS. How do you get the participants for a conversation? Each conversation object has a participants array object. [TwilioConversationsClient conversationsClientWithToken:token properties:nil…
Berry Blue
  • 15,330
  • 18
  • 62
  • 113
0
votes
1 answer

How to refresh a token for a Twilio Conversation in the iOS SDK?

I'm using the TwilioConversationsClient on iOS. How do I generate a new token once my existing token has expired? These delegate methods get called after the token expires. - (void)conversationsClientTokenWillExpire:(TwilioConversationsClient…
Berry Blue
  • 15,330
  • 18
  • 62
  • 113
0
votes
1 answer

Cannot create TCHMessageOptions object with Twilio Conversations Client SDK

I'm using the Twilio Conversations Client SDK in an iOS app. It works fine, but I'm getting a crash when I try and create a new TCHMessageOptions object to send a message. TCHMessageOptions *message = [[TCHMessageOptions alloc] withBody:value]; The…
Berry Blue
  • 15,330
  • 18
  • 62
  • 113
0
votes
0 answers

Twilio Conversations API

I want to use the Conversations Api to fetch all conversations of a specific user. I can't seem to find a way to do that. Can anyone point me in the right direction? For reference, I am migrating from Programmable Chat and trying to convert this to…
L. Fox
  • 328
  • 1
  • 6
  • 20
0
votes
2 answers

How to send a message in a Twilio Conversation

How do you send a new message to a Twilio Conversation in node.js? I found this sample code from Twilio, but I don't know how to get messagingServiceSid for my Conversation. // Download the helper library from…
Berry Blue
  • 15,330
  • 18
  • 62
  • 113
0
votes
1 answer

The twilio iOS SDK for conversations doesn't surface errors to the delegate

I am not getting any errors surfacing from the TwilioConversationsClientDelegate public func conversationsClient(_ client: TwilioConversationsClient, errorReceived error: TCHError) The errors do show up in the console when the log level is set to…
MweyaMutsvene
  • 543
  • 4
  • 15
0
votes
1 answer

Twilio - create a conversation service or a conversation user the node.js

I am trying to create a new conversation service resource in Twilio and to add a new conversation client to it. I am trying the node.js example but I don't have the option that the documentation shoes. So for creating a new conversation Service I…
Udi Mazor
  • 1,646
  • 2
  • 15
  • 30