Comments
-
It looks like you also have an old version of the SDK added: dropbox-core-sdk-1.7.7.jar Can you remove that and try again? Also, try the "account-info" example that's included with the SDK.
-
Apologies, the documentation is wrong. We'll get that fixed up. The header should be "Dropbox-API-Select-User". Please try that and let us know if you still see any issues.
-
It looks like this is a bug on our side. We're looking into it.
-
Richard's correct, Dropbox API apps should not handle the user's credentials, but should use the OAuth flow instead. Note that this only needs to be done once per user. Once your app has an access token for a user, it can store and re-use the access token for future API calls for that user without further manual user…
-
Thanks for writing this up! I'm passing this along as a feature request.
-
Thanks for the clarification! I'm sending this along to the right people as feedback.
-
The Dropbox Chooser should automatically use the language set for the user in the user's account settings without any configuration from the app. This seems to be working for me: Is this not working for you?
-
For large files, you should use chunked uploading: https://www.dropboxstatic.com/static/developers/dropbox-android-sdk-1.6.3-docs/com/dropbox/client2/DropboxAPI.ChunkedUploader.html
-
You can use GetThumbnailAsync to get thumbnails.
-
You can use ListFolderAsync to get file/folder listings, and DownloadAsync to download files. The tutorial has samples of both.
-
The /sharing/remove_folder_member documentation says: "dropbox_id String Dropbox account, team member, or group ID of member to add." So, you have a few choices of what kind of ID you can supply. For example, you can get a Dropbox account ID from /users/get_current_account (for the linked user), or of members of a shared…
-
The serialization methods are now public in version 3.1.0.
-
Thanks for the writeup Aibek! I'm sending these along as feature requests, though I can't make any promises about if or when they'd be implemented. One note, it doesn't sounds like you necessarily are, but just to be sure/for anyone else reading, you definitely shouldn't rely on email address as an account identifier in…
-
This should be fixed as of version 2.0-beta-6 of the SDK, where we exposed the ability to configure socket read timeouts for StandardHttpRequestor. You can find a sample of using longpoll here: https://github.com/dropbox/dropbox-sdk-java/blob/master/examples/longpoll/src/com/dropbox/core/examples/longpoll/Main.java
-
Thanks for the report Dennis! This is a known issue that the team is working on.
-
Hi Grant, thanks for the report. I can't seem to reproduce this here though. About what percent of your API calls are failing? For reference, I just tried this simplified code, using v2.2.0 of the SDK: import dropbox ACCESS_TOKEN = '...' client = dropbox.client.DropboxClient(ACCESS_TOKEN) for i in range(100): print(i) #…
-
Thanks! That's likely the cause here then. The media information can take some time to generate, before which the entries can't be returned for these cursors. We're always working to keep these delays to a minimum, but they can vary. Unfortunately I don't have a perfect solution to offer here, but you may want to just…
-
Production status wouldn't help here, as that just enables more users to connect to your app. Are you using include_media_info=true when you originally get these cursors though?
-
Thanks for the feedback! We don't currently have documentation for this, but I'll be sure to pass this along as a request for some.
-
Thanks for the additional information Quentin! I believe that is in fact the issue, in that the Dropbox document picker doesn't currently support folders/packages, so sending a zip file would be better. I'm sending this along as a feature request though.
-
I don't think there should be anything special about using UIDocumentPickerModeExportToService with Dropbox in particular. Can you share some sample code and steps to reproduce the issue so we can look into it? Thanks in advance!
-
This should be fixed again now. Please let me know if you're still seeing it.
-
No news on this right now. I'll follow up here once I have an update to share.
-
No update on this right now. I'll follow up here once I have news.
-
Thanks for the report Aaron. We'll look into it again.
-
Thanks for the feedback all! Yes, this was an issue on the page used in this modal on our side.
-
This should be fixed now. Please let me know if you're still seeing it.
-
No update right now.
-
Thanks for the report! We're looking into it.
-
You'll need a ".tag" to indicate which option in the MemberSelector union you're using. E.g.,: curl -X POST https://api.dropboxapi.com/2/sharing/add_folder_member \ --header "Authorization: Bearer <redacted>" \ --header "Content-Type: application/json" \ --data "{\"shared_folder_id\":…