python脚本:
import boto3
client = boto3
client = boto3.client('sns')
client = boto3.client('sns', 'us-east-1')
res = client.publish(PhoneNumber='+919853092550', Message='Hello world')
print(res)
响应:
{'ResponseMetadata': {'RetryAttempts': 0, 'HTTPStatusCode': 200, 'RequestId': '01dce12e-6094-51a7-9f5b-b5832039b06e',
'HTTPHeaders': {'x-amzn-requestid': '01dce12e-6094-51a7-9f5b-b5832039b06e', 'date': 'Mon, 07 Jan 2019 11:56:28 GMT',
'content-length': '294', 'content-type': 'text/xml'}}, u'MessageId': '261597c7-a0d1-5e1d-9fde-c36ae07c7fd4'}
我正在尝试使用AWS短信服务发送短信。 但是,我的手机上没有短信。我正在得到以上答复。