woaer
Results
2
comments of
woaer
1024
You can use the following code: ```javascript http .get('http://example.com/') // following redirects .redirects(0) // error handling .ok(res => res.status >= 200 && res.status < 400) .then(res => { console.log(res.status) console.log(res.headers['location'])...