request
.get('http://st.motortrend.com/uploads/sites/10/2016/02/2017-volvo-xc90-front-three-quarters.jpg')
.on('data', chunk => {
buffers.push(chunk);
})
.on('end', () => {
let contents = Buffer.concat(buffers);
dbx.filesUpload({ path: '/volvo-xc90.jpg', contents })
.then(resp => {
console.log(resp);
})
.catch(err => {
console.log(err);
});
})
.on('error', err => {
console.log('Error: ', err);
});