Results 2 comments of woaer

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'])...