1

我目前正在使用 boto3 向我的听众发送短信。问题在于,无论我是否在 OriginationNumber 字段中输入了一个有效的长代码,短信总是来自一个短代码。

client.send_messages(
    ApplicationId='appID',
    MessageRequest={
        'Context': {},
        'Addresses': {
            event['phone_number']: {
                "ChannelType": "SMS"
            }
        },
        'MessageConfiguration': {
            'SMSMessage': {
                'Body': 'hello world',
                'OriginationNumber': "+15405551234",
                'MessageType': 'TRANSACTIONAL'
            }
        }
    }
)
4

1 回答 1

0

如果其他人遇到这种情况。我必须使用 aws 打开支持票证,并向他们提供描述我的应用程序的用例。因此,登录控制台并前往支持部分。

于 2018-11-22T14:03:45.840 回答