Hi,
I need to get source URL's of each photos or videos on Dropbox account.
Earlier with v1 is i was gettting file path like below:
var api = new DropboxApi(dropbox_appkey, dropbox_appsecret,accessToken);
var metadata = api.GetFiles("dropbox", "");
But with v2 i'm trying now:
using (var client= new DropboxClient(accessToken))
{
var list = await client.Files.ListFolderAsync(path);
}
With the above code i'm getting all main folders and files which are created in the Root of Dropbox, but not getting sub-folders and files of main folders/sub-folders.
I was trying with ListFolderContinueAsync() but stuck with parameter 'cursor' which is required.
Any pointers or example would be great help.
Thank you.