aws SMS 발송
페이지 정보
본문
아마존 메뉴얼
https://docs.aws.amazon.com/ko_kr/sdk-for-javascript/v2/developer-guide/sns-examples-sending-sms.html
// Load the AWS SDK for Node.js
var AWS = require('aws-sdk');
// Set region
AWS.config.update({region: 'REGION<=수정해야함'});
// Create publish parameters
var params = {
Message: 'TEXT_MESSAGE', /* required */
PhoneNumber: 'E.164_PHONE_NUMBER<=+821012345678',
};
// Create promise and SNS service object
var publishTextPromise = new AWS.SNS({apiVersion: '2010-03-31'}).publish(params).promise();
// Handle promise's fulfilled/rejected states
publishTextPromise.then(
function(data) {
console.log("MessageID is " + data.MessageId);
}).catch(
function(err) {
console.error(err, err.stack);
});
실행
node sns_publishsms.js
https://docs.aws.amazon.com/ko_kr/sdk-for-javascript/v2/developer-guide/sns-examples-sending-sms.html
// Load the AWS SDK for Node.js
var AWS = require('aws-sdk');
// Set region
AWS.config.update({region: 'REGION<=수정해야함'});
// Create publish parameters
var params = {
Message: 'TEXT_MESSAGE', /* required */
PhoneNumber: 'E.164_PHONE_NUMBER<=+821012345678',
};
// Create promise and SNS service object
var publishTextPromise = new AWS.SNS({apiVersion: '2010-03-31'}).publish(params).promise();
// Handle promise's fulfilled/rejected states
publishTextPromise.then(
function(data) {
console.log("MessageID is " + data.MessageId);
}).catch(
function(err) {
console.error(err, err.stack);
});
실행
node sns_publishsms.js
첨부파일
-
aws node js SMS 보내기 __ 닉군의 좌충우돌 창업기_1.pdf (1.5M)
0회 다운로드 | DATE : 2021-04-21 15:36:02 -
aws node js SMS 보내기 __ 닉군의 좌충우돌 창업기_2.pdf (1.1M)
0회 다운로드 | DATE : 2021-04-21 15:36:02
관련링크
-
https://nicgoon.tistory.com/232
3167회 연결 -
https://ndb796.tistory.com/286
3604회 연결
- 이전글php 7.4 설치 remi 변경 21.04.21
- 다음글CentOS7에서 Google Chrome + Python3 + selenium으로 웹 크롤링 기초 21.04.20
댓글목록
등록된 댓글이 없습니다.