-
team data.member permission implicitly checked team data.governance.write
I am configuring App client with Dropbox. In Permission tab, when i checked team data.member permission, it implicitly checked team data.governance.write. Is this bug ? I just want configure permission with ready-only access.
-
Can we list only paper , paper template, files or shortcut at a time
Using Dropbox SDK , we can all list all files & folders using following API client.files().listFolderBuilder("").withRecursive(true) .withLimit((long) limit).withIncludeHasExplicitSharedMembers(true) .withIncludeMountedFolders(false).start() Is there any API by which we can only list paper files or paper template file?
-
Getting error DbxRequestUtil.unexpectedStatus(DbxRequestUtil.java:387)
I am getting following error too frequently while using Dropbox Java SDK Please suggest solution for this com.dropbox.core.RateLimitException: null at com.dropbox.core.DbxRequestUtil.unexpectedStatus(DbxRequestUtil.java:387) at com.dropbox.core.v2.DbxRawClientV2$1.execute(DbxRawClientV2.java:154) at…
-
List folder continue API or SDK method return different result record count for each cursor
First we are calling list folder with limit as 200 limit UInt32(min=1, max=2000)?The maximum number of results to return per request. Note: This is an approximate number and there can be slightly more entries returned in some cases. This field is optional. Then after getting first 200 records , we are calling list folder…
-
List folder returns shared folders & files even passing include_mounted_folders as false
We have following java method in SDK , but even passing false , it list shared folders https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.1.x/com/dropbox/core/v2/files/ListFolderBuilder.html#withIncludeMountedFolders-java.lang.Boolean-…
-
API /sharing/list_file_members and sharing/list_file_members/batch returning different result
API /sharing/list_file_members and sharing /list_file_members/batch returning different result for same file ID /list_file_members/batch , return blank entries while /list_file_members/batch , return 1 owner entry for a file Please check below , for same file id , API returning different result.…
-
Is there SDK API to retrieve file comments
Can we get Comments added by other users using Java SDK API ?
-
Unable to get event for child files deletion when parent folder is deleted
If we delete parent folder which holds multiple files inside in it , then events API with file_operation category only return single event for folder deletion with file count. {"timestamp":"2023-12-22T03:05:03Z","event_category":"file_operations","event_type":{".tag":"file_delete","description":"Deleted files and/or…
-
How to download paper , paper template , web shortcuts
I am using https://content.dropboxapi.com/2/files/download But i am getting response as, { "error_summary": "unsupported_file/.", "error": { ".tag": "unsupported_file" } } Is there any API , by which we can get paper , paper template , web shortcuts content/download ?