aws SMS 발송
페이지 정보
작성자 미친새 작성일 21-04-21 15:33 조회 9,912 댓글 0본문
아마존 메뉴얼
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 3171회 연결
- https://ndb796.tistory.com/286 3614회 연결
댓글목록 0
등록된 댓글이 없습니다.