0
我試圖訪問一個API,需要我在GET
請求的標頭中發送一些信息,如下圖所示。嘗試發送節點中的標頭
我有我的代碼中設置了這樣的,但我發現了一個resp has no method setter
錯誤。我已經閱讀過各種文章,並看過其他語言的例子,但是我無法在節點中找到它。
https.get(url, function(resp){
resp.setHeader("Content-Type", "json/application");
resp.setHeader("Authorization", Key);
resp.on('data', function(chunk){
sentStr += chunk;
});
resp.on('end', function(){
console.log(sentStr);
});
});