-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Linkedin uses status code 999 which leads to RangeError #1415
Comments
999 is not allowed according to the fetch specification, can you try using the native fetch function and see what happens please? |
Thanks a lot for the fast reply. I did what you suggested by using a local express server. const express = require('express')
const app = express()
const port = 3000
app.get('/', (req, res) => {
res.status(999).send('Hello World!')
})
app.listen(port, () => {
console.log(`Example app listening on port ${port}`)
}) Then in the browser: const ninenineninefetch = async () => {
try {
const response = await fetch('http://localhost:3000')
const text = await response.text();
console.log(response.status, text)
} catch(e) {
console.log('error', e)
}
}
ninenineninefetch(); Which will output 999 'Hello World!' without triggering the catch. I also found this: Which states a status is in the range from 0 to 999. |
Thanks for the above code. If you construct a Response in JS directly and not via fetch it will error: new Response('',{status:999})
// Uncaught RangeError: Response constructor: Invalid response status code.
// <anonymous> debugger eval code:1 It looks to me like the host environment can accept wider range statuses than can be constructed with the Response class, this will take a bit of code juggling to solve.
|
Any updates here? @JakeChampion |
LinkedIn uses status code 999 and thus it triggers a RangeError when calling a linkedin url.
For example you can call: https://www.linkedin.com/in/someone
I think therefore 999 should be included in the status code range check although it's unofficial.
The text was updated successfully, but these errors were encountered: