I'm using a javascript Dropbox picker script that displays the Dropbox picker window that allows a user to select files and returns a list of selected files. Said script can be found here:
http://codingbin.com/jquery-cloud-storage-file-picker/
The picker I'm talking about is the standard Dropbox picker popup as seen below:
The JSON response is similar to below:
{
isDir: false,
name: "test.txt",
bytes: 1600,
link: "https://dl.dropboxusercontent.com/1/some-hash-here/test.txt",
id: "id:QPX-_Anj3-another-hash-here",
icon: "https://www.dropbox.com/static/images/icons64/page_white_text.png"
}
Everything seems to be working for a while but after a few minutes, the link becomes invalid. I am selecting a file that is public shared , BTW.
Another issue is that the icon fields always returns the same image.
Anyone here came across this same problem? Help is greatly appreciated.
