Answers for "axios i have send a post request with data but it is sending get request"

1

Using axios send a GET request to the address:

// GET request for remote image
axios({
  method: 'get',
  url: 'http://bit.ly/2mTM3nY',
  responseType: 'stream'
})
  .then(function(response) {
  response.data.pipe(fs.createWriteStream('ada_lovelace.jpg'))
});
Posted by: Guest on April-10-2020

Code answers related to "axios i have send a post request with data but it is sending get request"

Browse Popular Code Answers by Language