I am using Python SDK and would like to retrieve all of my dropbox files and folders.
I am using v2 of Python SDK of Dropbox.
dbx = Dropbox("DROBOX_ACCESS_TOKEN")
response = dbx.files_list_folder("/Apps/Marketing")
for file in response.entries:
print file.name
However, I get an error:
dropbox.exceptions.ApiError: ApiError('b0479a07aaa5a9b405862ae75cbf135d', ListFolderError(u'path', LookupError(u'not_found', None)))
While Apps folder exists in Dropbox when I login (prob in root folder)
When I try to list with empty path in order to get root folder folders:
response = dbx.files_list_folder("")
the response entries are empty.
How can I retrieve the list of all files and folders in dropbox v2 api?
The token is the one I generated in OAuth 2 settings in dropbox.
and I gave the token App folder access to a folder under Apps called Marketing.