Node-Fetch API GET with Headers

时间:2016-10-18 04:01:15

标签: node.js api

https://www.npmjs.com/package/node-fetch 节点v6.4.0 npm v3.10.3

我想在此API调用中发送带有自定义标头的GET请求。

$formattedAmount = sprintf("%05.2f",$amount);

标题未申请,我被拒绝访问。 但是在curl命令中,它可以很好地工作。

2 个答案:

答案 0 :(得分:3)

让我们使用此bash命令netcat -lp 8081并暂时将网址更改为http://localhost:8081/testurl。现在,请求仍然会失败,但我们的控制台会显示一些原始请求数据:

user@host:~$ netcat -lp 8081
GET /testurl HTTP/1.1
accept-encoding: gzip,deflate
user-agent: node-fetch/1.0 (+https://github.com/bitinn/node-fetch)
connection: close
accept: */*
Host: localhost:8081\r\n
\r\n

这两个\r\n是事实上不可见的CRLF,规范说,这些标记标题的结尾和请求正文的开头。您可以在控制台中看到额外的新行。 现在,如果您希望它看起来像这样:

user@host:~$ netcat -lp 8081
GET /testurl HTTP/1.1
username: example@example.com
password: examplePassword
requiredapikey: 0000-0000-00-000-0000-0
accept-encoding: gzip,deflate
user-agent: node-fetch/1.0 (+https://github.com/bitinn/node-fetch)
connection: close
accept: */*
Host: localhost:8081

然后你只需要做一点改变:

// var headers = {}
//headers['This-Api-Header-Custom'] = {
var headers = {
  Username: loginInformation.username,
  Password: loginInformation.password,
  requiredApiKey: loginInformation.ApiKey
}

fetch(server, { method: 'GET', headers: headers})

但是如果你想设置一些特殊的标题This-Api-Header-Custom,那么你就不能传入嵌套的对象和数组,但你必须序列化你的数据,即将用户名/密码/ requiredApiKey数据转换为串。根据您的要求,可能是CSV,JSON,......

答案 1 :(得分:-2)

我认为您需要使用Headers构造函数,而不是普通对象。

https://developer.mozilla.org/en-US/docs/Web/API/Headers

https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch#Headers

myHeaders = new Headers({
  "Content-Type": "text/plain",
  "Content-Length": content.length.toString(),
  "X-Custom-Header": "ProcessThisImmediately",
});