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
1 answer

Twilio SWIFT API get consumed messages always returns 0

I want to display next to a chat channel the number of messages a channel has that have been unconsumed or unread (I assume this is what unconsumed means?) Currently I send messages to a channel that two users are subscribed to , a private chat.…
Ben Smith
  • 521
  • 3
  • 15
0
votes
1 answer

Get user join / leave events retroactively from Channels

I'm trying to do some analytics on average response time from some of our users on Twilio Chat. I'm iterating through my channels, and I'm able to pull the info about messages, so I can compare times a message went un-responded to. However, I can't…
Jake T.
  • 4,308
  • 2
  • 20
  • 48
0
votes
0 answers

Twilio, Chat client initialization failed with: Request to EMS service has failed, unable to set FPA token}

If I generate an access token with voice and chat grants, I can not build a chat client it returns "Request to EMS service has failed, unable to set FPA token". Access token with only chat grant works as expected. I've checked all Twilio service…
0
votes
1 answer

specify the sound file in request in twilio

I am started to learn twilio and currently using it on the local server to make some basic call practices. For the testing purposes i have used twilio code. $call = $twilio->calls ->create("+123", "+123", …
tech_geek
  • 1,624
  • 3
  • 21
  • 44
0
votes
2 answers

In Application Messaging in NodeJS Application

I am trying to implement in-app messaging (Message center Module) for my web application which will send and receive messages between users of the system. I am using NodeJS as my backend. I am planning to use PUSH notifications for this. With this…
0
votes
1 answer

Get user private channel list using Twilio Programmable Chat REST API

Using a Twilio user identity, which API(s) can I call to retrieve the list of private channels this user is member of?
0
votes
1 answer

Is it possible to run Twilio Video only on IIS and written on C#?

In the all samples I see usage of Twilio VIdeo only on node.js as a web server. Is it possible to run it on IIS and the both, server and client part written on C#?
Igor
  • 281
  • 4
  • 12
0
votes
1 answer

What happens to incoming messages from twilio when server is down

When there is an incoming message to a twilio number, twilio will try to post the message to an endpoint provided in the webhook. But what's the expected behavior if the endpoint is not accessible or server is down? Can the message be retrieved…
SHB
  • 589
  • 1
  • 6
  • 18
0
votes
0 answers

Identify a sender from a message in Twilio channel

We are using Twilio's javascript SDK to create a programmable chat. I am hooking up to the messageAdded event to play an audio alert. But the messageAdded event gets triggered, both for an inbound message (which is what I want), and for an outbound…
Amudh
  • 40
  • 6
0
votes
0 answers

Twilio MMS status is always remains Sent when sent using Bot framework

I am building a bot for Twilio (SMS) channel. When I send a Simple plain SMS to a number in US, it gets delivered with status in twilio message log as Delivered. But when I attach any image to the message to send MMS, the message never gets…
0
votes
1 answer

Availability of channelData for Twilio sms channel for Bot framewok

I am building a bot which handles two channels : Slack and Twilio (SMS). For sending channel specific messages ,there is one document channelData I could find channelData for Slack here. But I couldn't find any documentation or link on internet for…
0
votes
2 answers

How to record whole incoming call from IVR flow twilio

Flow of IVR script I am working on Twilio studio for an incoming call, now I have setup everything except one thing that is to record the whole incoming call. I have done the recording of outgoing successfully but can't find a way to record an…
0
votes
0 answers

Twilio Chat - The authorization with Token failed in Javascript SDK

I am generating the token using PHP SDK. The token signature is verified in jwt.io. All the keys are correct. While creating the chat client, it throws error. ems.us1.twilio.com/v1/token a status of 401 (Unauthorized) EMS E: Error: The…
arun kumar
  • 703
  • 2
  • 13
  • 33
0
votes
2 answers

Twilio Chat - Javascript SDK - Error: The authorization with Token failed

I am using a PHP server to generate token. When I initialize the chat client with the token generated, I am getting this error. POST https://ems.us1.twilio.com/v1/token 401 (Unauthorized) {"message":"The authorization with Token …
arun kumar
  • 703
  • 2
  • 13
  • 33
0
votes
2 answers

Twilio - Inviting Users on a private channel by inviteByIdentity using swift client code

if the channel does not exist then we create the new private channel let options: [NSObject:AnyObject] = [ TWMChannelOptionFriendlyName: defaultChannel, TWMChannelOptionUniqueName: defaultChannel, TWMChannelOptionType:…
Rajeev Singh
  • 198
  • 1
  • 11