Resolving Dropbox link with Axios

node v10.24.1
version: master
endpointsharetweet
const axios = require('axios') axios.get('https://www.dropbox.com/s/101qhfi454zba9n/test.txt?dl=1').then(x => { console.log('Received correctly') console.log(x.data); }).catch(error => { console.log('Error', error.message); if (error.response) { // The request was made and the server responded with a status code // that falls out of the range of 2xx console.log(error.response.data); console.log(error.response.status); console.log(error.response.headers); } else if (error.request) { // The request was made but no response was received // `error.request` is an instance of XMLHttpRequest in the browser and an instance of // http.ClientRequest in node.js console.log(error.request); } console.log(error) });
Loading…

no comments

    sign in to comment