Retrieve contents of a public Dropbox folder?

后端 未结 3 414
轻奢々
轻奢々 2021-02-06 06:31

Is there a way to retrieve a list of the contents of a public Dropbox folder (preferably in PHP)? This is what a URL to a public file in Dropbox looks like:

http         


        
3条回答
  •  死守一世寂寞
    2021-02-06 07:04

    Looks like this library is pretty complete (although I haven't used it myself), and is probably as simple as (post-auth):

    $info = $dropbox->getMetaData('Public', true);
    print_r($info['contents']);
    

提交回复
热议问题