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

Plivo call transfers

I am struggling with call transfers. I have connected a hardware phone with a SIP endpoint from Plivo. I can make and receive calls without any problems but call transfers using the inbuilt "TRANSFER" button on the phone dont work. Dialling into the…
fiscme
  • 422
  • 1
  • 6
  • 20
0
votes
2 answers

Plivo - Not receiving sms

I've just started using Plivo to set up an sms service. I'm trying to receive SMSs on my server but my server just doesn't seem to receive them. I've set it up on heroku, the below is my code: import plivo, plivoxml import os import…
0
votes
2 answers

Using a module's methods inside a class

I'm trying to integrate an API into a class but can't work out how I put the modules in place. class PlivoNumber < ActiveRecord::Base require 'plivo' include Plivo def initialize_plivo @p = RestAPI.new(ENV['PLIVO_AUTH_ID'],…
Carpela
  • 2,155
  • 1
  • 24
  • 55
0
votes
0 answers

why is my plivo api call returning an error?

I am using the plivo search number api to list telephone numbers by selected parameters. The ruby code is: get '/search_numbers' do p = RestAPI.new(AUTH_ID, AUTH_TOKEN) params = {'country_iso' => 'GB'} response =…
user1903663
  • 1,713
  • 2
  • 22
  • 44
0
votes
1 answer

Caller ID in Plivo

I am using Plivo API for calling and need to get my call to display a valid Caller ID Number. I am using a Callback URL :
Jiteen
  • 429
  • 2
  • 6
  • 23
0
votes
2 answers

Get records of call that are made by specific Number in Plivo API

When I make a call through PLIVO API and want to get the list of the calls made. I send the request to the API as : GET https://api.plivo.com/v1/Account/{auth_id}/Call/ I am using multiple numbers to make a call through single PLIVO API KEY. So,Is…
Jiteen
  • 429
  • 2
  • 6
  • 23
0
votes
1 answer

NoClassDefFoundError: javax.naming.ldap.LdapName is a restricted class in GAE

We have Goole App Engine Java Project that uses Plivo(SMS, Phone Call Platform) to send SMS. It uses Plivo Java Library to send a SMS. When I tried to send a sms, i got NoClassDefFoundError exceptions java.lang.NoClassDefFoundError:…
Fizer Khan
  • 88,237
  • 28
  • 143
  • 153
0
votes
1 answer

Error: Processing Call Failure ! (while setup Plivoframework and freeswitch)

There found problem in plivo-outbound while setup freeswitch and plivoframework. plivo-outbound.log file gave following Error log when i called plivo from freeswitch using softphone. Furthermore, the freeswitch worked fine and there was no problem…
guru_dev
  • 13
  • 5
0
votes
1 answer

How can I call a phone number using the Sip capabilities?

All examples I've seen require a SipProfile of the person I'm calling. In this case I'm not making a voip-to-voip call, but rather a voip-to-landline call. Basically I want to mimic what the default Caller application does, you set up a Sip account…
Manuel Alejandro
  • 588
  • 4
  • 13
0
votes
1 answer

Enabling noise suppresion and other effects in Android

I am using Plivo SDK in a app (https://www.plivo.com/docs/sdk/android/) to make VoIP outgoing call. The receiving end, i.e. the person I'm calling, hears me with noise and with very bad quality. According to Android documentation I can use the…
Manuel Alejandro
  • 588
  • 4
  • 13
0
votes
1 answer

How can I fetch data from socket.io client for node POST request

I'm working on a node.js app that tries to fetch data from a socket.io client to populate a response to a POST request from another client. Something like... POST http request from client A server requests data over socket.io from client B client B…
bt-nick
  • 1
  • 2
0
votes
1 answer

How to create a conference call in Plivo with Java?

I have added the answer_url to Conference XML with unique Id. But my 2nd call to the makecall API recieved a IllegalState Exception. I am not sure what i am doing wrong? Code: LinkedHashMap params = new LinkedHashMap
Rajesh
  • 660
  • 4
  • 12
0
votes
1 answer

How to transfer call to another url using plivo api and java

Am unable to transfer my call to another url . In plivo logs its shows : "POST /v.0.1/TransferCall/ HTTP/1.1" 404 347 0.001610 My Code is below: import org.plivo.bridge.client.PlivoClient; import…
0
votes
5 answers

using jquery getJSON, how can I access a json array to select one element?

Using the Plivo api, I am making a getJSON call, so the following is returned: [ { "group_id":"31505537702425", "number_type":"local", "prefix":"347", "region":"New York, UNITED STATES", "rental_rate":"0.80000", …
user1903663
  • 1,713
  • 2
  • 22
  • 44
0
votes
1 answer

Heroku rejects my plivo app: ! [remote rejected] master -> master (pre-receive hook declined)

I'm trying to follow the installation guide for this app: https://github.com/plivo/voicechat I cloned it into my git repository, created a new heroku app, etc, following the guide to the letter. When I deploy, however, Heroku rejects it. I did some…
dshack
  • 273
  • 1
  • 4
  • 11