apiembed icon indicating copy to clipboard operation
apiembed copied to clipboard

Headers in Node Http not working

Open cesarbaleco opened this issue 4 years ago • 0 comments

Config Example:

{
    "method": "POST",
    "url": "https://api.z-api.io/instances/SUA_INSTANCIA/token/SEU_TOKEN/send-text",
    "httpVersion": "HTTP/1.1",
    "queryString": [],
    "headers": [
        {
            "name": "Content-Type",
            "value": "application/json"
        }
    ],
    etc..... 

Result:

var http = require("https");

var options = {
 "method": "POST",
 "hostname": "example.com",
 "port": null,
 "path": "/save",
 "headers": {} // headers empty
};

cesarbaleco avatar May 17 '21 23:05 cesarbaleco