I don't see any your api support to get all data(and folders) frm dropbox.com/home
Add a problem.
https://api.dropboxapi.com/2/files/list_folder?access_token=....
This address did not running.
The URL dropbox.com/home corresponds to the root of a Dropbox account. To list the root of a Dropbox account using Dropbox API v2, you would use the /files/list_folder and /files/list_folder/continue endpoints. The path parameter to represent root should be the empty string: ". For example, calling /files/list_folder with curl would look like this:
curl -X POST https://api.dropboxapi.com/2/files/list_folder \ --header "Authorization: Bearer ACCESS_TOKEN_HERE" \ --header "Content-Type: application/json" \ --data "{\"path\": \"\"}"
But I use json to get data . I was trying to https://api.dropboxapi.com/2/files/list_folder?access_token=.... but don't run. Where is wrong?