Questions tagged [plivo]

Plivo is a cloud communications provider that offers the ability to send and receive phone calls and text messages via a simple REST API, as well as full SIP support.

Plivo is a cloud communications provider that offers the ability to send and receive phone calls and text messages via a simple REST API, as well as full SIP support.

169 questions
5
votes
2 answers

Services (such as Twilo, Plivo, Nexmo) to verify phone numbers in Rails app

I'd like to verify phone numbers of user accounts in my Rails 4 app (by simply sending them a four digit pin number which they'll need to enter back into the app) - which services are available and which ones are the least hassle to implement into a…
A4J
  • 879
  • 10
  • 24
5
votes
2 answers

Does Twilio have any plan to implement simultaneous calling with machine filter correctly?

In Twilio - simultaneous ring is broken with airplane mode. Since first call that connects will cancel all the other attempts, if there is a line that is on airplane mode, it will pick up immediately and take user to voicemail. The fix would be to…
Clark
  • 2,893
  • 5
  • 23
  • 25
4
votes
1 answer

error : use 'application/json' Content-Type and raw POST with json data

The error message error : use 'application/json' Content-Type and raw POST with json data is being appeared from cyclos application inside plivo console which a third API that need to be integrated in cyclos through Gateway URL:…
Muhammad Muazzam
  • 2,810
  • 6
  • 33
  • 62
4
votes
2 answers

How can I use cognito to create user accounts, but a different service for verification?

I am building an app that will be using Plivo or Twilio for user interaction and input. I wanted to use AWS Cognito for user management, but for verification, they say a user must verify email or phone number. I wanted to have the user interaction…
VDog
  • 1,083
  • 2
  • 13
  • 35
4
votes
2 answers

Plivo - How to get call_uuid in web sdk

Please Explain me how to get call uuid in there. When i connect a call. https://www.plivo.com/docs/getting-started/web-sdk/make-outgoing-calls/ // Make outgoing calls function call() { if ($('#make_call').text() == "Call") { …
Mukesh Kumar
  • 172
  • 9
4
votes
1 answer

RestSharp Serialize/Deserialize Naming Conversion

I am attempting to wrap the Plivo API (yes I'm aware it's been done) using RestSharp. However, I cannot find a method to translate the API Naming conventions to my own, for example: A "Call`…
Adam Reed
  • 229
  • 4
  • 16
4
votes
1 answer

What libraries/APIs allow me access real time audio waveforms of a phone call?

I am looking to build an app that needs to process incoming audio on a phone call in real time. WebRTC allows for this but i think this works only in their browser based P2P audio communications functionality but not for phone calls/ VOIP. Twilio…
wemadeit
  • 507
  • 6
  • 12
4
votes
0 answers

How to apply AutomaticGainControl and AcousticEchoCanceler with AudioManager

I have used this code in the past: AudioManager am = (AudioManager) getSystemService(getContext().AUDIO_SERVICE); am.setParameters("noise_suppression=off"); Which is roughly equivalent to: NoiseSuppressor ns; ns =…
Manuel Alejandro
  • 588
  • 4
  • 13
4
votes
2 answers

SMS receiving confirmation

I am trying out different things with Twilio, but open for other solutions with Nexmo, Tropo or Plivo. Here's a situation, I am sending an SMS texts from a server to bunch of clients. I can get a status back: like queued, sending, sent, or failed.…
Midnight Coder
  • 721
  • 1
  • 8
  • 20
3
votes
1 answer

getting empty body in record action - twilio

My use case: My case is that i'm making a bot for listening podcast in which user will make call to twilio number and bot will ask what type of podcast would you like to listen then record for 10 seconds when recording finish, it say user to please…
Inzamam Malik
  • 3,238
  • 3
  • 29
  • 61
3
votes
1 answer

Plivo SMS is not being sent and getting error in Java

I am integrating Plivo SMS API with my java web application. I want to send messages through my application. I am referring to https://www.plivo.com/docs/getting-started/send-a-single-sms/ link. Below is the code snippet: String authId = "{my…
Manushi
  • 33
  • 4
3
votes
0 answers

How do I dial a Twilio SIP endpoint

So far, Twilio endpoints are seeming more like middle points, since all my attempts to dial them have failed. I have a Twilio SIP endpoint created with URI testuri123.sip.twilio.com. I am dialing this URI from arbitrary IPs, so instead of creating…
swajak
  • 2,669
  • 3
  • 20
  • 22
3
votes
2 answers

plivo api intallation via composer conflict with guzzle

I am installating plivo api using composer on live server(digital ocean), which running command i getting some dependencies version mismatch errors. plivo required guzzle latest version, but guzzle is already installed in my laravel application but…
3
votes
2 answers

Plivo Rent a number Api not Working for me

require 'vendor/autoload.php'; use Plivo\RestAPI; $auth_id = "My AUTH_ID"; $auth_token = "My AUTH_TOKEN"; $p = new RestAPI($auth_id, $auth_token); $params = array( 'number' => '12512077502' # Phone number to buy ); $response =…
Mukesh Kumar
  • 172
  • 9
2
votes
1 answer

Send an otp to the desired mobile number using nodejs

I am using Plivo to send sms to the user for otp verification and i am unable to update mobile number and message parameters for different users, here is my code global.params = { 'src': 'xx-xxxx', // Sender's phone number with country code …
ankitkhandelwal185
  • 1,023
  • 1
  • 15
  • 24
1
2 3
11 12