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

HTTP request taking default method GET instead of POST

I'm trying to send sms through Plivo SMS API. Unfortunately, even though the request HTTP method is 'POST', the request posted as 'GET'. Please see my code below. let fromNumber = "11111111111" let toNumber = "111111234" let message =…
Pruthvi Hariharan
  • 551
  • 1
  • 6
  • 23
0
votes
1 answer

xml file to generate answer_url for plivo application

I am in process of integrating a plivo application in java application .Here i am struck in url parameter.here i have to create a xml file and pass it to answer_url key parameter as a value. As a reference to this…
dafodil
  • 531
  • 15
  • 30
0
votes
1 answer

How to send verification code using plivo php api

I am using the Plivo API to send a message. I want to send a verification and check that code using the Plivo PHP API, similar to this example. I have searched a lot but was unable to find sample code or an example in the Plivo PHP API.
Ahmar Arshad
  • 477
  • 1
  • 10
  • 22
0
votes
1 answer

Receive SMS with Plivo/Codeigniter

I've been trying to implement a function that retrieve the data from a SMS we send to Plivo. Currently in my website, I can send a SMS, check the status, but I want users to be able to respond to these SMS and store these data into my database. I…
Komarzer
  • 629
  • 3
  • 7
  • 20
0
votes
0 answers

Running Curl Plivo SMS command in R

I am able to send the sms through terminal using below code. curl -i --user AUTH_ID:AUTH_TOKEN \ -H "Content-Type: application/json" \ -d '{"src": "1111111111","dst": "2222222222", "text": "Hi, text from Plivo"}' \ …
Domains Barter
  • 153
  • 1
  • 5
0
votes
1 answer

Express + Plivo: Ajax POST request fails times but I still get the same sms on my phone twice

I'm using Express, React, Ajax, Plivo. I have an ajax POST request that sends the data(user phone number and text message) from client to my express server. When I send the post request I get the text message on my phone but when I check chrome dev…
corasan
  • 2,636
  • 3
  • 24
  • 41
0
votes
2 answers

Plivo: error while trying to send SMS

I keep getting this error: "757: unexpected token at 'Could not verify your access level for that URL. You have to login with proper credentials" In my Ruby on Rails application. Here's the code: def send_message_plivo p =…
ste
  • 3,087
  • 5
  • 38
  • 73
0
votes
1 answer

Receiving React Native events while app is in sleep mode

I'm trying to add a Native Module to my React Native project but I'm having difficulties receiving JS events when my phone is in sleep mode. I've implemented event dispatchers as stated in the documentation here:…
Ismailp
  • 2,333
  • 4
  • 37
  • 66
0
votes
2 answers

Plivo -- Calling ID

I have set up my android phone with Plivo SIP settings to be able to answer/make calls from my cell phone. It works great ! -- However, when calling someone from my Plivo SIP account, the number displayed (to the receiver) is something like:…
abernier
  • 27,030
  • 20
  • 83
  • 114
0
votes
1 answer

Plivo - play a music while speaking a text in the same time

I'm using the element to greet my clients in music :) It works great but I'd like to use the Speak element as well, in the same time. Does anybody knows if this is possible: play a music while speaking a text in the same time? Thank you
abernier
  • 27,030
  • 20
  • 83
  • 114
0
votes
1 answer

Turn off Voice call on my Plivo number

I want to turn off the Voice Calls feature on my Plivo number because I only use them for sending SMS through their API. Sometimes when people receive a sms , they call back to the number they see and wait on hold or something for about 45 seconds…
General Electric
  • 1,176
  • 3
  • 21
  • 44
0
votes
1 answer

Does GAE support Plivo?

I've been trying to implement Plivo on my GAE server but I'm getting a 500 error. I setup Plivo by using Plivo's Github PHP Helper Library. I saved that file as plivo.php on my test server. Then I added plivosend.php with the following…
Matt
  • 1,392
  • 12
  • 24
0
votes
1 answer

SMS is not going using Plivo

I am trying to send msg to a number using Plivo API in PHP. I at first I gave two USA numbers as source and destination. It didn't worked so I gave Indian Non DND numbers after that. Still the code is not working. As I am trying this for the first…
0
votes
0 answers

Why am i getting an error? Uncaught SyntaxError: Unexpected token

I am trying to get some details from an external page with ana ajax request. Since i am getting back a answer from the server it seems for me the request is working fine, in the console i can even find the required information. My code is however…
jhon dano
  • 660
  • 6
  • 23
0
votes
2 answers

using ruby and sinatra, and the Phony gem how can I find the alpha2 code from a phone number?

I have an international number as a string, so 81312345678 (Japan, Tokyo number) or 85212345678 (Hong Kong) and I need to isolate the country code, 81 in the case of Japan and 852 in the case of Hong Kong, in order to then identify the 2 letter…
user1903663
  • 1,713
  • 2
  • 22
  • 44