FAQ
Q
No Security.salt placeholder to replace.
A
Q Amazon SNSのエラーハンドリング
A
use Aws\Sns\Exception\InvalidParameterException;
try {
//エンドポイントをAmazon SNSに登録する
$endPoint = $sns->createPlatformEndpoint($options);
}
catch(InvalidParameterException $invParam)
{
print ($invParam->getMessage());
}