request-promise post request to axios request

858 Views Asked by At

Can you please help me convert the following request to axios request.

const request = require('request-promise');

const data = {name:'pte', age:30}
const options = {secret:'34444'}
const opp = {
    method: 'POST',
    uri: 'https://something',
    headers: { 'content-type': 'application/json' },
    options,
    body: JSON.stringify(data),
};

return request(opp);
1

There are 1 best solutions below

1
On
const axios = require('axios')

const url = 'https://something'
const data = { name : 'pte', age : 30 }
const options = {
   headers : {
      'content-type' : 'application/json'
   }
}

axios.post(url, data, header)