如何使用dropbox -js pullChanges方法获取现有文件的文件列表

时间:2014-06-25 22:01:32

标签: javascript dropbox-api

我使用dropbox-js访问用户的保管箱文件。请注意,我对此很新...

我需要做的是使用dropbox-js访问现有文件。据我了解,应该使用pullChanges方法。这就是我目前的方式:

client.pullChanges(null, function(error, results) {
    if (error) {
        return showError(error);
    }

    alert("Dropbox contains: " + results.shouldPullAgain); //just to test that something happens
});

我不确定这是否是使用pullChanges的正确方法,然后我需要知道如何使用results来实际获取文件/文件夹信息?

0 个答案:

没有答案