Comments
-
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.
-
This should be fixed in the latest version, currently v3.3.2.
-
@"lazedo" Thanks for the feedback. Dropbox API v2 isn't considered a REST API and so doesn't use all of the concepts typical to one, such as use of the various different HTTP methods. Instead, it can be considered more like an RPC API, where each API call is a sort of remote procedure call, with HTTPS used as a transport…
-
@"lazedo" Thanks for the post. I'm not aware of any current plans to change this, but I'll add your vote to the request.