File Sharing and Storage
Develop apps for millions of Dropbox users quickly and easily with the DBX Platform for file sharing and storage.
import requests
headers = {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json',
}
json_data = {
'path': '',
'recursive': False,
'include_media_info': False,
'include_deleted': False,
'include_has_explicit_shared_members': False,
'include_mounted_folders': True,
'limit': 2000,
}
response = requests.post('https://api.dropboxapi.com/2/files/list_folder', headers=headers, json=json_data)
print(response.json())Last 50 checks (10 min intervals)