简体   繁体   中英

Send SMS with AWS Javascript SDK

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.

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!

I faced the same issue. Its because AWS SNS is supported only on certain regions. This link lists the supported regions - https://docs.aws.amazon.com/sns/latest/dg/sms_supported-countries.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM