我有一个现有的起源实体在美国-东部-1发送短信的SNS。现在我也想发送短信从SNS在美国-东-2。但是,在我的“美东2”主题中添加新订阅时,我收到了以下消息:
An error occurred while attempting to add a phone number to the SMS sandbox. The phone number was not added. Error code: UserError - Error message: No origination entities available to send
关于每个区域或每个国家是否需要一个起源实体,这些文件并不十分
我们正在使用AWS SNS发送短信。在测试中,除了一位未接收消息的开发人员外,日志显示了以下内容:
Invalid parameter: PhoneNumber Reason: +1207XXXXXXX is not valid to publish to
我留下了他的区号以防相关。再说一遍,这是我们唯一有问题的数字,它是一个iPhone。对我们试过的所有其他数字来说都很好。我也可以成功地通过AWS SNS控制台短信号码,没有问题。
我应该注意,我们只发送一个6个字符串(用于2因子auth)。
我们是从兰博达来的。下面是代码的相关部分:
export function sendSNS(Pho
我想让给手机发短信。我检查了AWS的文件,上面写着
SMS notifications are currently supported for phone numbers in the
United States. SMS messages can be sent only from topics created in the
US East (N. Virginia) region. However, you can publish messages to
topics that you create in the US East (N. Virginia) region fr
我有这条短信
<div>another words</div>
<div>
some text here
</div>
我想得到包含“文本”字的<div>元素。结果在这里:
<div>
some text here
</div>
我可以这样做:
<div>.*text.*<\/div>
但是它选择了所有的文本。