Created
April 4, 2024 10:57
-
-
Save stokito/4c4d0b24b594056f06acead1da59717a to your computer and use it in GitHub Desktop.
localstack awslocal send sqs message with POST
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-making-api-requests-xml.html#structure-post-request
https://docs.localstack.cloud/user-guide/aws/sqs/