connect to dropbox in node
// connect with the help of developer token function DropboxConnect() { dropbox = DropboxV2Api.authenticate({ token: CONSTANTS.get('DBX_ACCESS_TOKEN') }); } DropboxConnect.prototype.getPreviewLink = () => { dropbox({ resource: 'sharing/create_shared_link_with_settings', parameters: { path: "/test2/img1.png" } }, (err,…