Skip to content

Instantly share code, notes, and snippets.

@stokito
Created April 4, 2024 10:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stokito/4c4d0b24b594056f06acead1da59717a to your computer and use it in GitHub Desktop.
Save stokito/4c4d0b24b594056f06acead1da59717a to your computer and use it in GitHub Desktop.
localstack awslocal send sqs message with POST
### SQS send
POST http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/example-topic?Action=SendMessage
Content-Type: multipart/form-data; boundary=WebAppBoundary
Accept: application/json
--WebAppBoundary
Content-Disposition: form-data; name="MessageBody"
Content-Type: application/json
{
"Id": 42
}
--WebAppBoundary