Questions tagged [vonage]

For questions relating to usage of the Vonage (formerly Nexmo and OpenTok) communications APIs for Messaging (SMS, MMS, social chats apps such as Facebook Messenger and WhatsApp), Verify, Voice, and Video, as well as associated tooling and language-specific SDKs.

This tag is to be used when asking questions about any of the Communication APIs that are provided by Vonage (formerly Nexmo and OpenTok). These include (but are not limited to) Voice, Video and SMS. The Vonage APIs can be accessed via first-party supported SDKs for a range of popular languages and platforms or called directly via HTTP requests.

If you have a question specifically relating to a specific SDK or platform, please make sure to include that platform’s tag in your question as well (for example, Java, Android, PHP, Python etc.).

For more information about these APIs, check out the Vonage documentation.

Community Further help can be found via Vonage Developer communities, where you can ask questions and learn more about the Vonage APIs and SDKs. These include Slack, Twitter and Youtube.

344 questions
33
votes
4 answers

Firebase SMS Verification / Authentication

For a client project I'm creating a simple hybrid app that serves a very simple function, yet will have high traffic. The app wouldn't normally need a backend, since it's very very simple, and firebase seems like a perfect solution for the project.…
johnozbay
  • 2,192
  • 1
  • 25
  • 28
26
votes
4 answers

HTTPResponse object -- JSON object must be str, not 'bytes'

I've been trying to update a small Python library called libpynexmo to work with Python 3. I've been stuck on this function: def send_request_json(self, request): url = request req = urllib.request.Request(url=url) …
Chevron
  • 364
  • 2
  • 5
  • 10
10
votes
2 answers

How to process GET Query String with Flask

How do I process a long GET request with Flask? Is is possible to get a dictionary all the params? Here is the query string I'm trying to parse: /?msisdn=19150000001&to=12108054321&messageId=000000FFFB0356D1&text=This+is+an+inbound+message…
user12871
  • 335
  • 1
  • 3
  • 8
7
votes
1 answer

Nexmo API credentials error

I am working on an sms feature by the Nexmo package. However I encountered an error which is: Please provide Nexmo API credentials. Possible combinations: api_key + api_secret, api_key + signature_secret, private_key + application_id, api_key +…
leonardeveloper
  • 1,813
  • 1
  • 34
  • 58
6
votes
1 answer

java.lang.AbstractMethodError: I get this exception when I am trying to initiate an outbound voice call using nexmo(vonage) API

My pom.xml for all the relevant dependencies. No other dependencies use the below dependencies internally. com.fasterxml.jackson.core jackson-databind
Dhyey Vachhani
  • 269
  • 2
  • 10
6
votes
4 answers

SMS containing links not delivered by some carriers

My web app sends an SMS text message to users in the US when they enter their phone number, using the Nexmo API. When the SMS contains a link, it does not get delivered to users if their carrier is Verizon or T-Mobile. For other carriers, such as…
koanima
  • 567
  • 1
  • 7
  • 19
6
votes
3 answers

Is there a way to use nexmo with a test api key?

I wonder how we're suppose to integrate and unittest nexmo. They don't have any test api key such as stripe, etc. They also charge you regardless of whether sms is sent or not They don't publish numbers where you can send a messae and not get…
bustrofedon
  • 281
  • 4
  • 15
5
votes
1 answer

convert audio file to Linear PCM 16-bit

I am trying to send an audio file through a websocket, and I realised that in order to do so i need to convert the mp3 file to a Linear PCM 16-bit code, but i cant find a way to do so. here is what i want to do: let mp3File = // the 16-bit pcm file…
davidla
  • 85
  • 1
  • 11
5
votes
1 answer

Reusing WebClient object to send another HTTP request

Can anyone explain me, why I can't reuse WebClient object to send another HTTP POST request? This code doesn't work: var client = new WebClient(); client.Headers[HttpRequestHeader.ContentType] = "application/x-www-form-urlencoded"; string…
Artyom Pranovich
  • 6,814
  • 8
  • 41
  • 60
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
4
votes
1 answer

Connecting Nexmo to a Websocket fails(remote party closed the WebSocket) in .Net Core

I'm trying to connect Nexmo to a web socket when doing an inbound call (the user calls the number bought with nexmo and link to the app). As of now, I'm simply trying this Sample Code (which simply echoes back what the caller says) and to connect to…
4
votes
1 answer

Nexmo - Undefined method send_message in Rails

I am trying to send an sms using nexmo gem, The code was working fine up till a couple of days ago. def send_sms @number = params[:number] @nannytel = params[:phone] nexmo = Nexmo::Client.new( key: 'xxxxxxx', secret: 'xxxxxxx' …
Rahul Lakhaney
  • 109
  • 1
  • 7
4
votes
0 answers

Using Nexmo API behind corporate proxy

Currently I used Nexmo API for my SMS authentication but encountered problem because of the ConnectionTimeOut Exception. Note: 1. I'm using a corporate proxy 2. Laravel 5.4 Does anyone here give me ideas how to configure nexmo to use proxy?
iamj
  • 173
  • 1
  • 10
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
4
votes
1 answer

Nexmo inbound callback URL

I'm attempting to use Nexmo.com to send and receive text messages. Sending works fine, but I am having some issues receiving messages. My issue is with the Callback URL and what format that page should be in. Nexmo's documentation is here and says…
Patrick
  • 143
  • 2
  • 8
1
2 3
22 23