問題描述
獲取 Dropbox 共享鏈接的文件列表 (Get list of files for dropbox shared link)
我正在嘗試做的事情似乎很簡單,但我找不到方法。
想像一下有人向您發送了一個 Dropbox 文件夾的鏈接。您可以轉到該 URL 並查看文件夾中的所有文件。
我正在嘗試用 python、php 或 javascript 編寫腳本以從該 URL 獲取該文件夾中的所有下載鏈接.
我該怎麼做呢?無需登錄/驗證首先發送鏈接的用戶的帳戶。
參考解法
方法 1:
I doubt that it's possbile to do without auth. As mentioned in Dropbox API doc — "Dropbox uses OAuth to authenticate all API requests."
方法 2:
Assuming that the contents of the folder are indeed public as you've indicated in the comments, you might want to look into the use of PHP's file_get_contents()
function.
From the docs:
file_get_contents
— Reads entire file into a string