Urgent , Please how can i add Authorisation header to HTTPP request on node - red for API

Okay - so that isn't a standard format for the Authorisation header, so the node won't be able to set the header for you.

Instead, add a Function node before the HTTP Request node with:

msg.headers = {
   "Authorisation": "Token 1234...."
}
return msg
1 Like