我目前正在使用 boto3 向我的听众发送短信。问题在于,无论我是否在 OriginationNumber 字段中输入了一个有效的长代码,短信总是来自一个短代码。
client.send_messages(
ApplicationId='appID',
MessageRequest={
'Context': {},
'Addresses': {
event['phone_number']: {
"ChannelType": "SMS"
}
},
'MessageConfiguration': {
'SMSMessage': {
'Body': 'hello world',
'OriginationNumber': "+15405551234",
'MessageType': 'TRANSACTIONAL'
}
}
}
)