Questions tagged [twilio-php]

Use to identify questions related to use of, or problems with, Twilio's PHP Helper Library.

Use the tag for questions about use of any API or service via the PHP Helper Library.

Twilio refers to a set of web services, APIs and tools provided by the company of the same name, used to send and receive text/picture messages, make and receive phone calls, and embed VoIP calling into web and native mobile applications.

Related tags

  • Use to identify questions related to use of, or problems with, Twilio's APIs.
  • Use to identify questions related to use of, or problems with, Twilio's Click-to-Call service or API.

Documentation

715 questions
11
votes
3 answers

Is it possible to access the live audio stream in a Twilio call?

Twilio can provide call recording, but that's not real-time. Is it possible to write an app that processes the caller's audio in real-time and responds after processing the audio? I'd like to have some software "listen" to the speaker and respond…
Zach Rattner
  • 20,745
  • 9
  • 59
  • 82
8
votes
3 answers

How to disable automated SMS responses in Twilio?

In March I opened a website that provides people with temporary numbers to be used to receive SMS verifications etc. I've just logged in to the account and realised that I've received a ton of charges for outbound SMS. They appear to be a default…
user598200
  • 295
  • 1
  • 4
  • 7
7
votes
2 answers

Twilio blacklist rule fatal error

I am using twilio to send bulk sms messages. Let's say some customer decided that they don't want to receive messages anymore so they reply with "stop" and that will add them to the black list. I am hard coding the phone numbers because I am still…
Hussam Hallak
  • 303
  • 4
  • 21
6
votes
1 answer

Can we handle incoming call using VOIP push for twilio client?

I have develop VOIP call functionality using TWilio Client iOS SDK. I get success to App to App call between two user. I have three case for App to App call. Case 1 : User 1 and User 2. User 1 have a active app and User 2 have also active app. In…
Wos
  • 390
  • 1
  • 16
6
votes
1 answer

Twilio - Connecting an Enqueued call to an Agent

I'm trying to create a phone system where a caller gets enqueued, and ideally, the system will then call out to an agent, who would then pickup and then modify the call to bridge the top of the queue. What I've accomplished thus far is the dialing…
Jeff Kelly
  • 83
  • 1
  • 6
6
votes
2 answers

Receiving SMS and storing it in database using Twilio

i am using Twilio API to send and receive sms from the customers. Every time i send the sms to my customers, i store the feilds like to, body in to my database. I have implemented the API for send message that works fine and am simply saving the…
Sathya Baman
  • 3,424
  • 7
  • 44
  • 77
6
votes
0 answers

Getting Twilio.Device client error {message: "Cannot register. Token not validated", code: 31204} intermittently during resetup

I am getting Twilio.Device client error {message: "Cannot register. Token not validated", code: 31204} intermittently during resetup of Twilio.Device. Can any one tell me what this error implies? Since I am generating the token correctly, but I…
5
votes
1 answer

PHP Twilio RequestValidator returning false on all endpoints

So I really don't know what the problem is here, I've tried many things, but I can't get the Twilio request hashes to match up. Let me explain. I decided to implement an instance of Twilio's RequestValidator to ensure the requests were coming from…
Adam McGurk
  • 186
  • 1
  • 19
  • 54
5
votes
1 answer

twilio The requested resource was not found

I tried to get a list of all conferences via Twilio PHP helper library, but get 404 error. My code: $client = new Client($accountSid, $authToken); foreach ($client->conferences->read() as $conference) { var_dump($conference); } Error: [HTTP…
Vlad Gukasov
  • 111
  • 2
  • 6
5
votes
3 answers

How to send bulk sms in twilio api without for loop

I'm trying to send bulk sms through twilio Api. Is there any method to pass the array of all phone numbers in a single API request.
Hassan Ejaz
  • 183
  • 2
  • 16
5
votes
1 answer

Adding multiple people to a conference call from caller Twilio

I read lots of articles about Twilio conference call. I created a php function which creates a Twilio conference which can add any one who have access to that link to the Conference with this link. so then I read this article about Dialing Multiple…
Martin
  • 429
  • 3
  • 18
5
votes
1 answer

Twilio, How to transfer a in-progress call to another number

How to transfer a in-progress call to another number.The concept that I m using is to use the update method when the call is in in-progress and dial the number that I wanted To connect and It is working but the connection with the first caller is…
John Ambrose
  • 167
  • 1
  • 11
5
votes
1 answer

How to not offer a task to specific worker on Twilio

I am new in Twilio and i have been facing an issue while designing outbound dialer currently preview dialing. If a worker rejects a task than the same task should not be offered to that worker again. How do i handle this case?
Faisal
  • 81
  • 4
5
votes
3 answers

Twilio sending message Using twilio library

Sending twilio message from my api returns this error Twilio sending message The requested resource /2010-04-01/Accounts//Messages.json was not found this is how I send a message. anyone incountered a problem? $this->client = new…
Nean
  • 75
  • 1
  • 2
  • 8
5
votes
3 answers

Is there a way to pass a custom parameter when make a call with Twilio?

I'm using Twilio PHP library but the question is actually language agnostic. I tried to do something like following: $client = new Services_Twilio('MyAccountSID', 'My auth token'); $client->account->calls->create($from_number, $to_number,…
Delmo
  • 2,188
  • 2
  • 20
  • 29
1
2 3
47 48