Would anyone have a tip on how I can create an HTTP request with node red flow?
This is Python code that I can trying to figure out how to recreate with node-red. Its an http POST with form data.
import requests
url = "http://127.0.0.1:5000/read"
read_req = {"address": "12345:2",
"object_type": "analogValue",
"object_instance": "302"}
print(requests.post(url, read_req).text)
Just trying to use the http request block, still learning node-red
But in node red it doesnt seem like there is an easy button for an http post for form data. Would anyone have any tips? Any tips with a javascript function would be greatly appreciated if I need to go to that extent.