Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
API
27 TopicsTeam access not permitted
I have created an app with team scopes, and used a Team admin account to authorize and generate access tokens, following the Oauth guide. I am still hit with errors for multiple business API end points. I even registered this account for a 'Dropbox Business Development' account which was supposed to allow 'testing' for business endpoints but I am met with the same errors. I am referencing the Business and User Endpoint documentation here. For example; '2/sharing/mount_folder' leads to "Unexpected select user header. Your app does not have permission to use this feature" '2/team/members/get_info' leads to 'This token is not associated with a team" error_type:USER_AUTH_NOT_ALLOWED' I am running out of workaround and tests, what am I missing? How do I use my Team account to authorize a 'team' token/app so that I can act on behalf of my team members?192Views0likes6CommentsRoot certificate changes
Hi, I received an email stating that: ...you own one or more active Dropbox API apps using a version of an official Dropbox SDK with an outdated certificate trust store... However when reading the blog post, it states for the .net sdk .NET SDK v7.0.0 or greater Note that apps using older versions of the .NET SDK are only affected if they call DropboxCertHelper.InitializeCertPinning(). I don't use DropboxCertHelper.InitializeCertPinning(), so I want to clarify that my app will be OK, and I don't have to rush out a change before January? ThanksSolved110Views0likes3CommentsSearch API not returning deleted files
Hi everyone, I'm using the Search API files/search_v2 and wanted to search for deleted files. The documentation claims that `file_status` can be used to restrict the search to the given file status. I'm doing a simple search as below, but I don't get the expected results: { "options": { "file_status": "deleted" }, "query": "deleted_file" } I've tried all kinds of combinations, but I'm still not getting correct results. Has anyone been able to make this work, or am I doing something wrong?/files/list_folder do not return entries correctly when filtering
I'm developer of an app that uses Dropbox API to fetch folders from the root of user's account. For most users the request works just fine, but there are some scenarios where a user have a lot of deleted files and folders in the root, in this scenario the API is not returning the entries correctly when filtering using `include_deleted=true` and `limit=100`, instead of excluding the deleted and returning the remaining entires up to the limit it returns only 1 entry, that is exactly the one that is not deleted from the first page of the request done with `include_deleted=false`, even using without limit it still fail to return all non-deleted entries in the first call, the user that raised this issue have 26 non-deleted folders in the root and 1 file, so it should be returned in just one page regardless of the limit, but the API apply the limit before the filterring. Am I doing something wrong or is there a way to fix this?93Views0likes3CommentsWhich is the java version supported by dbx sdk 7.0.0
Hi, I would like to upgrade dropbox-core-sdk from version 4.0.1 to 7.0.0. Currently, I'm using Java JDK 8. According to the Dropbox documentation, this SDK appears to be compatible with JDK 8. However, version 7.0.0 has a dependency on jakarta.servlet-api 6.0.0, which is based on JDK 11. I'm a bit confused: can I update the code without upgrading my JDK, or is it necessary to switch to Java 11? Alternatively, is it possible to compile the code using JDK 11 but still run it on JDK 8?SolvedEvents of event_type file_edit don't appear in /team_log/get_events API response
I have Dropbox Advanced Plan with this API available. I uploaded a docx file and edited. But, when I try to get events of event_type file_edit using mentioned API, it doesn't appear in the response. Other events, like file_add event_type do appear.391Views0likes10CommentsDropbox download via API unstable under Pyodide (xlwings lite)
I am using the Python dropbox module to download files in pyodide (actually xlwings lite). I see that quite often a file is not downloaded completely, without even raising an error. Is there a workaround or patch or ... ? Uploading files seems to work as expected.Getting {"error": "invalid_grant", "error_description": "invalid code verifier"}
I'm using PKCE flow https://www.dropbox.com/developers/documentation/http/documentation#oauth2-token in my react native expo app for generating the token. I'm able to generate code & state value successfully after hitting this url https://www.dropbox.com/oauth2/authorize But when i trying to get the access token using below ``` const params = new URLSearchParams({ code, grant_type: "authorization_code", client_id: DROPBOX_CLIENT_ID, code_verifier: codeVerifier, redirect_uri: redirectUri, }); console.log("PKCE params", params.toString()); const response = await fetch("https://api.dropboxapi.com/oauth2/token", { method: "POST", headers: { "Content-Type": "application/x-www-form-urlencoded", }, body: params.toString(), }); ``` I'm getting this error {"error": "invalid_grant", "error_description": "invalid code verifier"} I've verified that the code challenge and code verifier are correct and are passed correctly into the request. Stuck on this for hours now, need help. Thanks105Views0likes1Comment