What is the best AWS service for sending SMS via REST WEB API calls?

1

I would like to use an AWS service as it is possible to do with Twillio. I have an application that manages customers (so I have several thousand phone numbers). This application must be able to send WEB REST API calls to a service (AWS) to send SMS. I had thought of SNS, but that doesn't seem like the right service to me because the phone number won't be in AWS. I thought of Pinpoint. Is this the right service for you? Thank you

2回答
2
承認された回答

It depends what you're trying to do. You're on the right track, Pinpoint and SNS are both options for mobile messaging.

Pinpoint: https://docs.aws.amazon.com/pinpoint/latest/apireference/operations.html SNS (without subscribing the phone number to a topic): https://docs.aws.amazon.com/sns/latest/dg/sms_publish-to-phone.html

Keep in mind there is a SNS "sandbox" mode for SMS to protect reputation and not spam: https://docs.aws.amazon.com/sns/latest/dg/sns-sms-sandbox.html. Once out of the sandbox mode, you can send SMS messages to any recipient and not just verified ones.

jsonc
回答済み 2年前
0

I can't find how SNS can be invoked via a web service call (eg. HTTP), I can only find documentation and examples using Amazon SDKs for specific languages. I don't want to build the SDK into my application (all the other AWS services we use are REST endpoints... why not this one?).

回答済み 8ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ