GET endpoint for aws4 signature Function works for everything except POST

Hi there!

I have an API endpoint set up via node-red for the aws4 signature generator and it works for everything except POST requests. The response from AWS leads me to believe that the aws4 is not getting the body text passed into it correctly (maybe):


I don't know why AWS would say "Hey, I was expecting an unhashed payload here!" when I'm clearly sending one with my request.

I would bet that I'm just missing something important that's keeping it from functioning. I'm passing in all of the data as Queries since it's a GET endpoint:


However, I am not married to that idea, so if there's a better way, please let me know.

Here's the Function text:

Is it possible that I need to do something involving the JSON converter node? I've only been using node-red for a couple of weeks, so it is entirely possible that I'm missing something very, very basic. This exact request works perfectly in Postman, so it's not an access issue.

Thanks in advance!

The above response from AWS is incorrect. A script branched incorrectly, so I wasn't actually POSTing any data. Once I fixed that, AWS is now completely denying access. :slight_smile:

It still works perfectly for GET and DELETE.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.