I am using this dropbox api library for node.js
https://github.com/dropbox/dropbox-sdk-js/blob/master/examples/node/upload.js
I am uploading a file using that code, but how do I get its shared path? The response I am getting is this which doesn't have it.
{ name: 'boo.txt',
path_lower: '/boo.txt',
path_display: '/boo.txt',
id: 'id:0FFbLAVKMuAAAAAAAAAACA',
client_modified: '2016-08-08T21:58:24Z',
server_modified: '2016-08-08T21:58:24Z',
rev: 'd4c5d5dc3',
size: 3 }
Does anyone know?
Thanks