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

632 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
  • 18,673
  • 9
  • 53
  • 79
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
  • 283
  • 4
  • 19
7
votes
2 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
  • 175
  • 1
  • 2
  • 7
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
  • 282
  • 1
  • 14
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
  • 456
  • 1
  • 11
  • 39
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
  • 3
5
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
  • 73
  • 6
5
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
  • 2,867
  • 7
  • 35
  • 70
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
  • 1,855
  • 1
  • 15
  • 23
4
votes
2 answers

Twilio multiple push credential sid

I'm trying to implement Twilio swift quick start app, anyway I want to configure the app on both platforms iOS and Android, I reached step 8 in the iOS tutorial and I have a new PUSH_CREDENTIAL_SID for the iOS from the APN type, while the Android…
MhmdRizk
  • 1,266
  • 11
  • 27
4
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
  • 101
  • 2
  • 6
4
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
  • 133
  • 2
  • 13
4
votes
2 answers

How to record a voicemail if a number is not picked up in Twilio?

I am using Twilio in a PHP project, currently I am able to make calls and send SMS using its API as given below: $client = new \Services_Twilio($AccountSid, $AuthToken); try { // Initiate a new outbound call …
Amrinder Singh
  • 4,699
  • 9
  • 38
  • 74
4
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
  • 418
  • 3
  • 18
1
2 3
42 43