Subject: | Error on special chars and long messages |
Call to the Amazon API are made using GET instead of POST. As a result :
1) Messages containing special characters result in a failure because strings are not escaped:
Try this for example to reproduce:
my $s = '&';
$topic->Publish($s);
2) Long messages result also in a failure, due to the limitations in URL lengths:
Try this for example to reproduce:
my $s = 'x' x 100000;
$topic->Publish($s);