I have a web app where user can upload a picture of his logo using dropbox api im able to save the file to a dropbox folder which is great
however i want to get the download link so using my angular client ill be able to set the img src tag and show the image
I've been using this implementation:
String url = client.sharing().createSharedLinkWithSettings("/" + clientId + "/logo." + fileName[1]).getUrl();
however as the name implies im getting a share link which is basically a web page with the image i only need the image is it possible?