Cut the Clutter: Test Ignore Files Feature - sign up to become a beta tester here.
Forum Discussion
SportCorp
5 years agoNew member | Level 2
api.dropboxapi.com/2/team_log/get_events returns an empty list
calling api.dropboxapi.com/2/team_log/get_events returns an empty list with "has_more": true
{
"events": [],
"cursor": "AABCp00-V60AxTHN5J_Brex8tf5o0w9lXW8zmPz8ZTqZ7wg-1ubg1Skj2s6hyg6VlRyj-iyxGkv5RoTCaPP_kx9VAvRAr5rKAaUSYUFe8529SC28VXIZKCcXb9Lhx9EGfi5Zjkt_pHr_YRzN7-mzpCj4UsA8Wx_HDJC2E2DVGuK2lJx0uYgbVcs98hRRbu4433OuHpjrz5LGJL9O912P5x3Bx6UOfvV8r-GQ6uFJHqOsFiCuuwAWIVsQmLyiOXyfqsO6963Gyro6EUO4q9zTLaafL0ndJflQuN5GS96A_5Dy9GqrGAotyHzXrhhGxWaXYw2ccSBU7dRskmpdDLpmJ_qHqwXL3RNkA_mqWWE9htye3g",
"has_more": true
}
The feature is enabled as api.dropboxapi.com/2/team/features/get_values returns the following as true:
{
"values": [
{
".tag": "has_team_file_events",
"has_team_file_events": {
".tag": "enabled",
"enabled": true
}
},
{
".tag": "has_team_shared_dropbox",
"has_team_shared_dropbox": {
".tag": "has_team_shared_dropbox",
"has_team_shared_dropbox": true
}
}
]
}
When you get 'has_more:true' back from /2/team_log/get_events, you need to call back to /2/team_log/get_events/continue using the returned 'cursor' (and so on). The exact page size for any single response from these endpoints is not guaranteed, so make sure you have that implemented so you can retrieve all of the results, which may take multiple calls.
If something isn't working though, e.g., if you paginate through all of the pages until you get 'has_more:false' but still haven't received the entries, please let me know so we can look into it.
4 Replies
- Greg-DB5 years ago
Dropbox Community Moderator
When you get 'has_more:true' back from /2/team_log/get_events, you need to call back to /2/team_log/get_events/continue using the returned 'cursor' (and so on). The exact page size for any single response from these endpoints is not guaranteed, so make sure you have that implemented so you can retrieve all of the results, which may take multiple calls.
If something isn't working though, e.g., if you paginate through all of the pages until you get 'has_more:false' but still haven't received the entries, please let me know so we can look into it.
- SportCorp5 years agoNew member | Level 2
Thanks for the solution, though it is a weird behavior as it took about 7 pages (7 times continue) to get to useful data.
- dhyanP5 years agoNew member | Level 2
Did you end up figuring this out? I'm having the same issue.
- Greg-DB5 years ago
Dropbox Community Moderator
dhyanP It sounds like the original poster here did get this working by iterating through the different result pages as needed and indicated by the 'has_more' value. Please see my earlier comment for more information. Is that not working for you?
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.6,039 PostsLatest Activity: 5 hours ago
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!