receive http post node red code example
Example: node red http post request data
msg.headers = {};
msg.headers={
'Authorization': 'whatever',
'Content-Type': 'application/x-www-form-urlencoded'
};
msg.payload = {};
msg.payload={
'key': 'whatever_value'
};
return msg