How to remove baseURL from axios.get request in node.js

How to remove baseURL from axios.get request in node.js



I am using Axios to get data from a url. When the url begins with http:// or https:// i get an error


Error: getaddrinfo ENOTFOUND <url> at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:50:26)



After researching i found that removing the http:// and https:// prefixes could fix this. But the problem is that Axios automatically includes these prefixes.



I'm wondering if anyone knows how to manually set the baseUrl like something below.



host: 'dropbox.com',
path: '/s/ioedmud5dbc2bnu/1100.%20mobi.jpg?dl=1'






it's not clear actually what you want exactly

– Basil Battikhi
Sep 11 '18 at 14:09




1 Answer
1



From the Axios docs, you can create a new instance of axios with a custom config.


const instance = axios.create(
baseURL: 'dropbox.com'
);



You can then use that instance to make a request:


instance.get('/s/ioedmud5dbc2bnu/1100.%20mobi.jpg?dl=1').then(...).catch(...);



Thanks for contributing an answer to Stack Overflow!



But avoid



To learn more, see our tips on writing great answers.



Required, but never shown



Required, but never shown




By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.