Comments
-
Thanks for following up on this Nathan. The lag is usually relatively short, but it can vary, and can be on the scale of minutes. Anyway, the search and list_folder operations do operate using entirely different mechanisms. So, in general, if you can use list_folder in any particular scenario, that would be the better…
-
There can be some lag on search results (as opposed to the list_folder result). Are you still seeing this now that some time has gone by?
-
Dropbox does offer an API you can use to upload and download files, among other operations, such as getting shared links for files. You can find everything you need to get started with the Dropbox API, including documentation, tutorials, and SDKs here: https://www.dropbox.com/developers We recommend using one of the…
-
Hi Larry, this should be working as expected again. Please let me know if you're still seeing any issues.
-
Thanks for the additional information Larry. We're looking into it and I'll follow up here once I have an update for you.
-
The equivalent of API v1's /1/save_url in API v2 is /2/files/save_url. Both of those endpoints do require that the app specify the destination path for the file, in the "path" parameter. The "auto" value from v1 was used in the "root" parameter, which identified the access type of your app ("sandbox" or "dropbox"), or let…
-
Hi Ronan, Team member management does not include Team member file access, or the other way around. There isn't currently a way to register for both on the same app, so you'll need to register two apps. We'll consider this a feature request.
-
Thanks James. You shouldn't call authenticateDropboxLogin or authenticationSuccessful or finishAuthentication when you already have an access token. The access token is all you need to access the account. That is, once you have your DropboxAPI object using the retrieved access token, you can start making API calls with it.
-
Can you also share the exception/stack trace? Thanks in advance!
-
Can you share a sample failing request and response? (Redact part of the access token to be safe though.) If you're using the OAuth 2 "code" flow, one thing we sometimes see is that the app saves the authorization code instead of the access token. The access token is re-usable, but the authorization code isn't. (The…
-
Thanks for the report Ed! This is an open issue with the team, though I don't have an update on it right now.
-
To list a folder in the JavaScript SDK, you would use filesListFolder and filesListFolderContinue. I'm not sure what you mean by "manage" exactly, but there are also other methods for other file operations, such as moving, copying, deleting, etc. Also, and for anyone else reading, please make sure to heed Stephen's advice…
-
[Cross-linking for reference: https://stackoverflow.com/questions/38935509/dropbox-upload-file ] It looks like you're using the PHP Core SDK for the deprecated API v1. We recommend migrating to API v2 whenever possible. We don't have an official PHP SDK for API v2, but there are some third party ones listed here. Anyway,…
-
Thanks for the report Joel. It looks like we did have a spike in errors earlier, but that should be resolved now.
-
You could use a Dropbox shared link ( https://www.dropbox.com/help/274 ) to the video modified for raw access, ( https://www.dropbox.com/help/201 ) as the source for the video element on your site. -- Se puede usar un enlace compartida de Dropbox (https://www.dropbox.com/help/274) para el vídeo modificado para el acceso en…
-
Hi David, that's correct, /list_folder/continue only guarantees that it will get your app's state up to date with the server, and not that it will necessarily give you every change. If you want to list the changes for any particular file, you can use /files/list_revisions.
-
Hi Ashley, no, unfortunately I don't believe we have any documentation quite like that, but I'll pass this along as a request.
-
Hi Joel, the "id" for a folder will stay the same through a rename, so you can store the "id"s for the files/folders in an account, and then find the new metadata entries with previously known ids from the response of each further call to /files/list_folder/continue.
-
Thanks for clarifying! That is our SDK, though we also haven't received any reports like this for that either. One helpful piece of information would be if this is only happening on that particular phone, or if you can reproduce it on another phone using the same browser. If it's just that specific phone, perhaps try…
-
We haven't received any reports of issues like this from other developers, but DropNet is made by a third party, so you may want to reach out to the maintainers instead. (Further, based on the screenshot, it looks like whatever browser being used is itself having trouble rendering the Dropbox site.)
-
Thanks for the project! Unfortunately, the issue doesn't reproduce for me using this project on a test device. The files and folders do get listed for me. Looking at your code though, one thing that might be an issue is how you're using your client object. That is, you're letting client be your authorizedClient, but that…
-
Hi Bernadetha, there shouldn't be anything extra you need to do for this. I can't reproduce this issue though. Can you share the relevant code you're using, and any/all output/errors you're getting? Thanks in advance!
-
No, the API doesn't currently let you search for multiple file extensions in a single call. You'll need to make multiple search calls, one per desired extension, and combine the results as desired. We'll consider this a feature request though. Alternatively, you can list the desired folder(s) and filter by extension…
-
The Dropbox API and SDK themselves don't offer local caching like this, so you will need to implement it in your app's code if your app needs caching. Actual caching strategies and algorithms are beyond the scope of just Dropbox/Dropbox API support, so I can't offer much help with that in general. Perhaps someone here can…
-
No, I don't have an ETA on this right now.
-
Hi Todd, the audit log isn't currently available in API v2. There's a note about this at the top of the Business API documentation: "Note: The Audit log endpoint is not yet available in the Dropbox Business API v2. This endpoint will continue to be available and maintained in the Dropbox Business API v1."
-
No, no updates on this.
-
I can't guarantee that this will be implemented and released, but I'll make a note for us to follow up on this thread if/when it is.
-
[Cross-linking for reference: https://stackoverflow.com/questions/38789516/dropbox-api-v2-to-get-the-images-albums/38795640?noredirect=1#comment65013746_38795640 ] No, unfortunately the Dropbox API doesn't offer a way to do this in bulk, but I'll be sure to pass this along as a feature request.
-
1. No, the API doesn't yet offer the ability to programmatically create team folders. We'll consider it a feature request. 2. The /team/members/add endpoint only allows you to add members to a Dropbox for Business team, creating the account if necessary. It doesn't otherwise allow you to create arbitrary (e.g., free or…