Send SMS with AWS Javascript SDK

ozzieisaacs picture ozzieisaacs · Aug 4, 2016 · Viewed 9.8k times · Source

I want to send an SMS with the AWS javascript sdk with a verification code.

var AWS = require('aws-sdk');
AWS.config.region = 'us-east-1';
var sns = new AWS.SNS();

var params = {
  Message: 'this is a test message',
  MessageStructure: 'string',
  PhoneNumber: '+12346759845'
};

sns.publish(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

I keep getting "Unexpected key \'PhoneNumber\' found in params".

I have followed the examples in the documentation and it seems what I have is valid as far as I can tell. Apparently, I do not need to create a topic to send individual text messages.

Answer

Steeve17 picture Steeve17 · Nov 23, 2016

Yes so the correct answer is that an outdated sdk version was used. To fix it set aws-sdk to * in your package.json file and run

npm install aws-sdk

With the latest version this code will run fine!