我正在尝试使用以下代码使用 aws sns 向特定号码发送短信,但它需要一个目标/主题 arn,这对我不适用,因为我想将短信发送到我在参数中设置的号码。
$client = SnsClient::factory([
'credentials' => [
'key' => "my key",
'secret' => "my secret"
],
'region' => "us-east-1",
'version' => "latest"
]);
$sent = $client->publish(
[
'Message' => 'This is the message',
'PhoneNumber' => '+91887******7'
]
);
我无法找到发布对象的确切参数。