-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
What steps will reproduce the problem?
1. Send a message to SQS like: {Hello}[Queue]
2. Receive a Bad request
What is the expected output? What do you see instead?
Send message should succeed
What version of the product are you using? On what operating system?
All
Please provide any additional information below.
badChars in the url encoding functions needs to have "<>{}[]()" included:
static void __aws_urlencode ( char * src, char * dest, int nDest )
{
...
const char * badChrs = " \n$&+,/:;=?@<>[]{}()";
...
Original issue reported on code.google.com by joelehew...@gmail.com on 4 Sep 2012 at 11:17
Reactions are currently unavailable