Comments
-
Thanks for the report! First, for reference, we highly discourage embedding calls like this into HTML pages, as you're exposing the access token. A malicious visitor to the page could extract the access token and access the account via the API. (You should revoke the one you used on that JSFiddle.) Anyway, I'll ask the…
-
Thanks for the post! I've added your vote to the request to increase this timeout, but I can't promise if or when it would be changed. (I'm not aware of any immediate plans to change it.)
-
Unfortunately it's hard to say off hand what may be happening here. Can you add some logging to see exactly what calls the app is making and what responses it's receiving in both cases? If you can share that, we may be able to offer more insight. (If you'd prefer to share privately, feel free to open an API ticket with…
-
Thanks for the post. I've added it as a duplicate of: https://stackoverflow.com/questions/27263120/dropbox-oauth-2-dynamic-return-url In short, redirect URIs need to be exactly pre-registered, but there's a workaround there that may work for you.
-
No, unfortunately the API doesn't offer a way to link to old versions of files, but I'll pass this along as a feature request.
-
Thanks for following up. I'm glad to hear you got this working. The JavaScript SDK wasn't built for Angular unfortunately, so I can't offer a more official/supported solution.
-
The Dropbox API now supports file IDs for more endpoints, such as /2/files/upload: https://www.dropbox.com/developers/documentation/http/documentation#files-upload If you're using an official SDK, there will also be corresponding methods.
-
The Dropbox API now supports file IDs for /2/files/upload: https://www.dropbox.com/developers/documentation/http/documentation#files-upload If you're using an official SDK, there will also be a corresponding method for this endpoint.
-
The Dropbox API now supports file IDs for /2/files/upload: https://www.dropbox.com/developers/documentation/http/documentation#files-upload If you're using an official SDK, there will also be a corresponding method for this endpoint.
-
The Dropbox API now supports file IDs for list_folder: https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder If you're using an official SDK, there will also be a corresponding method for this endpoint.
-
The Dropbox API now supports file IDs for list_folder: https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder If you're using an official SDK, there will also be a corresponding method for this endpoint.
-
@"jonro" API v1 was deprecated last year, and is no longer supported and is being retired very soon. I'm sorry to hear this caught you by surprise. We sent out emails notifying developers, but unfortunately it sounds like those didn't make it to you. For reference though, /1/shares should still be working for now, and…
-
The Dropbox API now offers a way to determine which admin authorized a particular access token: https://www.dropbox.com/developers/documentation/http/teams#team-token-get_authenticated_admin If you're using an official SDK, there will also be corresponding method for this endpoint.
-
The Dropbox API now offers a way to determine which admin authorized a particular access token: https://www.dropbox.com/developers/documentation/http/teams#team-token-get_authenticated_admin If you're using an official SDK, there will also be corresponding method for this endpoint.
-
The Dropbox API now offers a way to determine which admin authorized a particular access token: https://www.dropbox.com/developers/documentation/http/teams#team-token-get_authenticated_admin If you're using an official SDK, there will also be corresponding method for this endpoint. In the Python SDK, that's:…
-
The Dropbox API now offers a way to create and update Paper documents programmatically: https://www.dropbox.com/developers/documentation/http/documentation#paper-docs-create https://www.dropbox.com/developers/documentation/http/documentation#paper-docs-update If you're using an official SDK, there will also be…
-
The Dropbox API now offers a way to create and update Paper documents programmatically: https://www.dropbox.com/developers/documentation/http/documentation#paper-docs-create https://www.dropbox.com/developers/documentation/http/documentation#paper-docs-update If you're using an official SDK, there will also be…
-
The Dropbox API now offers a way to create and update Paper documents programmatically: https://www.dropbox.com/developers/documentation/http/documentation#paper-docs-create https://www.dropbox.com/developers/documentation/http/documentation#paper-docs-update If you're using an official SDK, there will also be…
-
The Dropbox API now offers a way to create and update Paper documents programmatically: https://www.dropbox.com/developers/documentation/http/documentation#paper-docs-create https://www.dropbox.com/developers/documentation/http/documentation#paper-docs-update If you're using an official SDK, there will also be…
-
Thanks for following up. I'm glad to hear you found the solution you were looking for. I'm not aware of any plans to update create_folder to support file ID-relative paths like that, but I'll pass this along as a feature request.
-
@"WilliamT" This thread is posted in the "API development" section, and is meant for programmers in particular. For non-programmer inquiries, you may be better suited in a different section, such as Find answers > Sharing and collaboration.
-
This should be working now. Please let us know if you're still seeing any issues.
-
This should be working now. Please let us know if you're still seeing any issues.
-
You can now set an approximate limit on the listFolder page size by using ListFolderBuilder.withLimit.
-
As long as you have a copy from around March or later you can check the kV2SDKVersion constant in code. Otherwise, it would depend on your installation method. E.g., with CocoaPods you can check the Podfile.lock file. For Carthage, you can check the Cartfile.resolved file.
-
Thanks for the report! A few questions first: - What version of the SDK are you using? If you're not using the latest version, currently v3.3.2, please update to that and let us know if it doesn't help. - Are you able to reproduce this yourself, or are you only seeing it via user crash reports?
-
The official Dropbox client works in a very different way entirely, so it isn't a useful comparison unfortunately.
-
Thanks. For example, I was able to reproduce this using: .withMode(WriteMode.update(null)) The value passed in to WriteMode.update should be the 'rev' value, not null.
-
@"afritz a." Is that definitely the exact code that is triggering this error? The code shows you using the "overwrite" write mode, but the error mentions the "update" write mode instead. Also, for reference, the "/Apps" folder name is localized based on the user's account language, but this doesn't affect the API behavior,…
-
This should be fixed in the latest version, currently v3.3.2.