Comments
-
Thanks for digging in and tracking this down already! I'm glad to hear you figured this out. Calling authorizeFromController twice would indeed cause this. Enforcing a single call is the right thing to do given the unexpected viewDidAppear behavior.
-
Thanks! These two jobs that returned an empty response actually completed. If you check the file listing, you should see the changes reflected. They're just hitting a different issue where the call to check the job status itself failed (with a 500 error). We're looking into that. Are you still seeing jobs explicitly…
-
I'm not aware of any other reports like this, so we'll have to investigate. First, can you share: * the version number of the Dropbox SDK you're using * the version number of the official Dropbox for iOS app you have installed * your code snippets for initiating and receiving the app authorization flow * if this is…
-
We don't have resources for Arduino in particular, but the Dropbox API does offer the ability to upload to Dropbox accounts programmatically. We recommend using one of the official SDKs, if possible for your platform, listed here: https://www.dropbox.com/developers/documentation Alternatively, you can use a third party…
-
The upload and download calls in the API v2 Objective-C SDK use background NSURLSessions, which do behave as described. If you want more responsive error callbacks for this, you can change this for foreground sessions. You can find more information on this under "Note about background sessions" here:…
-
Thanks! I was able to reproduce the issue. It looks like it is a matter of encoding it properly. You can do so like this: new Buffer(doc.fileBinary, 'binary').toString() I'll ask the team to look into whether or not the SDK should/can do that for you though.
-
The repo is available now, and it looks like you're running in node and not browser JavaScript like I was testing with. I'll try your code in node. Thanks!
-
The 'paper2json' GitHub link you shared is a 404 for me. (Perhaps it's not publicly accessible?) In any case, can you share just the code snippet(s) needed to reproduce the 'â' issue? When I download the data to an html file using `URL.createObjectURL(response.fileBlob)` the resulting html file shows the correct characters.
-
Thanks! Can you share the rest of the problematic code though? Thanks in advance!
-
Yes, sharingListFolders[/Continue] lists all of the shared folders the user has access to. You can list the shared folders using sharingListFolders[/Continue], and then use sharingListFolderMembers[/Continue] to check the members, i.e., to see if it's a folder just between you and the user.
-
Thanks for the report! I'll ask the team to fix the documentation. 1) includeMountedFolders: "If true, the results will include entries under mounted folders which includes app folder, shared folder and team folder." That is, whether or not to have the Dropbox API return information about those types of folders and their…
-
Thanks! I'm looking into it. When you called /2/files/delete_batch/check for this one in particular though, can you confirm if you got a response body containing a internal_error, or did you actually just get a 500 on the call itself?
-
Thanks for the report @"rustoiy". That does sound like unexpected behavior. If you can share a few responses showing that empty entries list, including the has_more=true and cursor, that would be helpful for us to investigate. (You can share privately here if you'd prefer: https://www.dropbox.com/developers/contact )
-
This sounds like something you should be able to accomplish without using the team endpoints. What are you stuck on with sharingListFolders[/Continue] exactly? Note that whether you use the user's access token or your own access token, it sounds like you'd need to filter the results of sharingListFolderMembers[/Continue]…
-
No, the API doesn't offer the ability to filter to folders only, but I'll pass this along as a feature request.
-
If you check the DBAUTHRateLimitReason, is it isTooManyWriteOperations? That indicates that it's not explicit rate limit, but rather a technical inability to make multiple modifications in an account at the same time. Note that the simultaneous changes can be from either the app itself, or other clients acting on the…
-
Which "authenticated user" do you mean, exactly? Note that Dropbox Business API apps are linked to the entire team, not a specific member, so for any given Dropbox Business API app linked to a team, there isn't exactly a specific member implied. If you mean the particular member that happened to authorize the app to…
-
Thanks for the report! We do unfortunately currently return internal_error when a more specific error would be more helpful. I'm sending this along to the team, but I can't make any promises as to if/when this would be improved. If you share the job ID though, I may be able to look into it and share some information as to…
-
The Dropbox API now offers the ability to get thumbnails in batches: https://www.dropbox.com/developers/documentation/http/documentation#files-get_thumbnail_batch If you're using an official SDK, there will also be a corresponding method for this endpoint.
-
The Dropbox API now offers the ability to get thumbnails in batches: https://www.dropbox.com/developers/documentation/http/documentation#files-get_thumbnail_batch If you're using an official SDK, there will also be a corresponding method for this endpoint.
-
The Dropbox API now offers the ability to get thumbnails in batches: https://www.dropbox.com/developers/documentation/http/documentation#files-get_thumbnail_batch If you're using an official SDK, there will also be a corresponding method for this endpoint.
-
The Dropbox API now offers the ability to get thumbnails in batches: https://www.dropbox.com/developers/documentation/http/documentation#files-get_thumbnail_batch If you're using an official SDK, there will also be a corresponding method for this endpoint.
-
The Dropbox API now offers the ability to get thumbnails in batches: https://www.dropbox.com/developers/documentation/http/documentation#files-get_thumbnail_batch If you're using an official SDK, there will also be a corresponding method for this endpoint.
-
We don't have an example for using upload sessions in the API v2 Objective-C SDK unfortunately, but I'll pass this along as a request for one. I have some samples for other languages though, which may still be useful, since the logic is the same. For example, a simple implementation in Python: f = open(file_path) file_size…
-
The Dropbox API now offers the ability to get thumbnails in batches: https://www.dropbox.com/developers/documentation/http/documentation#files-get_thumbnail_batch
-
I just wanted to follow up on this to let you know that the Dropbox API now offers the ability to get thumbnails in batches: https://www.dropbox.com/developers/documentation/http/documentation#files-get_thumbnail_batch
-
The include_property_groups parameter on /2/files/get_metadata takes a TemplateFilterBase object, so specifying it would look like this: curl -X POST https://api.dropboxapi.com/2/files/get_metadata \ --header "Authorization: Bearer ACCESS_TOKEN_HERE" \ --header "Content-Type: application/json" \ --data "{\"path\":…
-
The Dropbox API itself is just an interface accessed by HTTPS, so it doesn't have specific system requirements. It can be called from any platform that can make HTTPS calls. If you're using a particular SDK or library for connecting to the API, that SDK/library may have specific system requirements, which would be covered…
-
I see, thanks for clarifying. (Part of confusion is that the Dropbox JavaScript SDK can actually be used in Node JS in addition to in browser JavaScript, but it sounds like you're not actually referring to that.) That is, you're actually referring to the difference between these two operations: 1) Creating a folder on the…
-
Can you share the error/output? Thanks in advance!