admin管理员组文章数量:1350044
I'm trying to perform a GET request using Node's native https
module and a 3rd party axios
module (which is pretty monly used):
const endpoint = '';
require('axios')
.get(endpoint)
.then(response => console.log('axios', response.status));
// prints 200
require('https')
.get(endpoint, {},
response => console.log('https', response.statusCode));
// prints 403
The axios
request works fine as expected; I can view response.data
as well.
But the https
request fails with a 403.
- Strangely, both used to work last time I checked a few months ago.
- I haven't updated Node on my machine (node v 14.5.0). I've also tried on another machine as well (13.3.0).
curl
from the mand line also works fine.
Since https
used to work, my hunch is that the server must have changed something, and that https.get
and axios.get
must be doing something slightly differently (e.g. sending different headers by default) that the server is no longer indifferent to.
I'm trying to perform a GET request using Node's native https
module and a 3rd party axios
module (which is pretty monly used):
const endpoint = 'https://www.pathofexile./api/trade/data/stats';
require('axios')
.get(endpoint)
.then(response => console.log('axios', response.status));
// prints 200
require('https')
.get(endpoint, {},
response => console.log('https', response.statusCode));
// prints 403
The axios
request works fine as expected; I can view response.data
as well.
But the https
request fails with a 403.
- Strangely, both used to work last time I checked a few months ago.
- I haven't updated Node on my machine (node v 14.5.0). I've also tried on another machine as well (13.3.0).
curl
from the mand line also works fine.
Since https
used to work, my hunch is that the server must have changed something, and that https.get
and axios.get
must be doing something slightly differently (e.g. sending different headers by default) that the server is no longer indifferent to.
-
What happens if you reverse the two? I.E. first
https
thenaxios
? – Marco Bonelli Commented Oct 23, 2020 at 14:53 - same thing. I've actually been trying them independently, I just bined them to make the snippet show that I'm doing the exact same thing otherwise. – junvar Commented Oct 23, 2020 at 14:56
- Ok, interesting. I thought the server could have been rate-limiting your requests or something similar. – Marco Bonelli Commented Oct 23, 2020 at 14:57
- 1 I think your hunch is absolutely correct. – Adam Specker Commented Oct 23, 2020 at 14:59
2 Answers
Reset to default 9After a little bit of testing, I noticed that by default the https
module does not include an User-Agent
header, while axios
and curl
both do. The server is rejecting your request because you have no User-Agent
set.
To solve this, simply specify a custom User-Agent
of your choice:
require('https')
.get(endpoint, {headers: {'User-Agent': 'whatever'}},
response => console.log('https', response.statusCode));
After few web results focusing on node https didn't find an answer, I found another stackoverflow post about python gets returning 403 while curl returns 200.
It turns out it was an issue with the request's 'User-Agent'
header.
Curl by default sends the user agent 'curl/7.72.0'
:
> GET /94548/2401383/manifest.js HTTP/1.1
> Host: cdn.flashtalking.
> User-Agent: curl/7.72.0
> Accept: */*
Axios by default sends the user agent 'axios/0.20.0\r\n'
:
_header: 'GET /api/trade/data/stats HTTP/1.1\r\n' +
'Accept: application/json, text/plain, */*\r\n' +
'User-Agent: axios/0.20.0\r\n' +
'Host: www.pathofexile.\r\n' +
'Connection: close\r\n' +
'\r\n',
While node's https by default sends no user agent:
_header: 'GET /api/trade/data/stats HTTP/1.1\r\n' +
'Host: www.pathofexile.\r\n' +
'Connection: close\r\n' +
'\r\n',
Apparently, the server now checks for a non empty User-Aagent
header. Updating the https request to do so gets a 200:
const endpoint = 'https://www.pathofexile./api/trade/data/stats';
require('axios')
.get(endpoint)
.then(response => console.log('axios', response.status));
// prints 200
require('https')
.get(endpoint, {},
response => console.log('https', response.statusCode));
// prints 403
require('https')
.get(endpoint, {header: {headers: {'User-Agent': '_'}}}},
response => console.log('https', response.statusCode));
// prints 200
本文标签: javascriptNode httpsget returns 403axiosget and curl return 200Stack Overflow
版权声明:本文标题:javascript - Node `https.get` returns 403, `axios.get` and `curl` return 200 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743865054a2552428.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论