require('dotenv').config(); const debug=require('debug')('axios'); const URL=process.env.URL||'https://tarifmatrix.vbn.de:4445/fares/info'; debug('URL: '+URL) var axios = require('axios'); var data = '\n\n \n 2019-07-09T12:56:52+02:00\n 3acf1331-8684-44ca-b5fa-ecaf63efb07d\n deu\n \n \n \n Bremen Hbf\n \n \n \n \n'; var config = { method: 'post', maxBodyLength: Infinity, url: `${URL}`, headers: { 'Content-Type': 'application/xml' }, data : data }; axios(config) .then(function (response) { debug(JSON.stringify(response.data)); }) .catch(function (error) { console.log(error); });