I added a HTTP Request integration to my flow, defined the URL where the POST should be sent, and then defined the JSON for the variables I want in the custom body. On the receiving side of the POST, the body is empty. I tried the manual variable population for test and still remained empty. Am I doing something incorrectly? Thanks for your help.
I tried webhook.site and it did receive the json body π When I pointed to our Azure Logic App url, it did not receive the json body π . Do you know of any tips or users who have it working with a Azure Logic App? Thanks.
I got it to work, yet I need to advice. I had to add the header Content-Length and a value. Is there a way to dynamically estimate the Content-Length of my JSON data that is in the custom body?
I figured out a way to calculate the content length using Set variable with JS code. Then I set the Content-Length header to the contentLength variable. It solved it for Logic Apps.