I have a public dropbox folder. Is there any way to programmatically scan that folder for all files contained within?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Dropbox has an web API that'll let you do that. Get one of the SDKs and go through the tutorials to get started. |
|||||
|
|
use it .... require_once('bootstrap.php'); $metaData = $dropbox->metaData(); foreach($metaData['body']->contents as $file){
} |
|||
|
|