Hello,
i developed an integration for our applications that allows user to create a sharing link using dropbox api method "sharingCreateSharedLink".
I tested it using some personal account and had no problem, but it does not work with a business account of a colleague.
this method takes two params: short_url and path
short_url is always false and path is the relative path of the file i want a preview for.
If a file resides in /Users/<user>/Dropbox/path1/path2/path3/file.pdf then "path" parameter will be "/path1/path2/path3/file.pdf"
I noticed, on this business account, that relative path on Dropbox is little different. Instead of being "/path1/path2/path3/file.pdf" is
"<user_name>/path1/path2/path3/file.pdf".
I tried "sharingCreateSharedLink" passing as "path" parameter both "/path1/path2/path3/file.pdf" and "<user_name>/path1/path2/path3/file.pdf" but dropbox replies always with "path not found"
is there any difference between personal and business account i should be aware of?
thanks