Comments
-
Thanks for the detailed request! I've sent this along to the relevant team.
-
@"superheroEK" I just checked on your page, and it's still using a "/scl/fo" link. Make sure you've updated the page to use a "/sh" link, which should resolve the "Loading" issue as well.
-
@"superheroEK" Thanks, that's helpful. I've looked into your Embedder setup, and I see this is failing because of the use of a type of shared link not meant for use with the Dropbox Embedder. Specifically, your Embedder is configured with an "edit" shared link (with "/scl/fo" in the URL), however the Embedder is meant for…
-
Can you let me know where you found or received this code so I can check on that? In any case, is this the actual/exact code you're running? When I plug in an access token, and add the missing "," in the 'headers' object that otherwise causes a SyntaxError, I actually get the different error "Error in call to API function…
-
@"superheroEK" As Здравко said, it sounds like this is due to the link you're using. If this still isn't working for you, please share the code/link you're using so we can take a look.
-
@"fafner82" Thanks for the feedback!
-
Thanks for the helpful added explanation Здравко! @"pear0533" For reference, you can find more information on how to set ranges in the specification here. Note that Dropbox does not support setting multiple ranges in a single request though. That is, you can specify a single closed range like "bytes=0-10", or a single open…
-
@"dhruvin" Здравко is correct. Non-downloadable files cannot be downloaded and that cannot be changed. You would need to use /2/files/export instead.
-
No, the Dropbox API does not offer an event history for non-team accounts, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
I see you also posted this in a new thread so I'll follow up with you there.
-
I see the agent in the support ticket you referred to supplied this example: HttpClient client = new HttpClient();HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Post, "https://content.dropboxapi.com/2/files/download");request.Headers.Add("Authorization", "Bearer " +…
-
That would change the "Content-Type" request header value that you send, but you need to also make sure the value you're sending in the body actually uses that format. That is, you should be formatting the parameters accordingly, not using JSON.stringify. For example, you may want to use URLSearchParams, or whatever…
-
The parameters for the /oauth2/token endpoint should be sent as 'application/x-www-form-urlencoded' POST parameters, not JSON. I see your code is sending them as JSON so the API does not receive them and so the operation fails with that error. Please update your code to send the parameters using the…
-
If these are failing at about an hour, it does sound like it is due to the server timeout. There isn't an option to delay or prevent that. Also "downloads are much slower using range requests than with the API" is a bit unclear as range requests are themselves do use the same API. Specifically, the DownloadAsync method…
-
@"bpaar" I've moved your post to a new thread, as I see you commented on an old thread about using ObjectiveDropboxOfficial with Carthage, but it sounds like you're referring to using it with CocoaPods. I'll be happy to help with any issues you're having with the Dropbox API/SDK, but I'll need some more information. Please…
-
@"PIXIP" Thanks for following up with the additional information. In that case, please use the pre-built library, as mentioned here. There's also a note about doing so for the Android example here.
-
It sounds like you already opened a support ticket for this, so you can continue to using that existing ticket, to keep the conversation in one place. I'm happy to help here however I can if you prefer though. Anyway, if you're only seeing this for a small subset of users, it may be due to network connection issues for…
-
Unfortunately, the Dropbox API doesn't offer a way to list/filter files/folders created only since a specific date nor a way to retrieve the original creation date, but I'll pass these along as feature requests. I can't promise if or when they might be implemented though. The API doesn't distinguish between files and…
-
@"abhinovClairvoyant2" As Здравко noted, in order to access the contents of the team space, you'll need to set the root for the call to the team space. You can find information on how that works in the Team Files Guide they linked to. For the Java SDK in particular, you'd use the withPathRoot method to set that header.
-
[Cross-linking for reference: https://stackoverflow.com/questions/75633261/specification-dropbox-sdk-java-generated-stone-source-main-src-must-have-a-s ] @"PIXIP" Have you or do you need to make any changes to the Java SDK project? If you don't need to make changes we recommend that you don't build from source. If you…
-
@"PIXIP" Thanks for the note. I've updated the links in my post.
-
To rename an app in "production" status, you'll need to open an API ticket to request the rename: https://www.dropbox.com/developers/contact
-
This can occur due to link restrictions that can be set that prevents links from being accessed outside of members of the shared folder or the team. By default, links are accessible without authentication, but team admins can optionally enforce additional access controls on links for their team members in general, which…
-
We have identified the issue and prepared a fix. It should be deployed either later today or tomorrow.
-
@"firoj_ali" A "The given OAuth 2 access token is malformed" error indicates that the access token you're supplying in the call is not in a valid access token format. Make sure you supply the entire access token exactly as you received it from Dropbox, without any modification or truncation, for instance. The following…
-
@"sr_c" I see you're using fetch to perform the call, so make sure you're using the right options to construct the call as needed. As Здравко said, fetch expects a parameter named 'body' to set the request body, not 'data'.
-
Thanks for the report! We'll look into it and I'll follow up here once I have an update.
-
Unfortunately that's not a bug that Dropbox can fix ourselves, as we don't own those products. There are some potential workarounds mentioned there that you may want to try though.
-
The shared_link_already_exists error is not guaranteed to contain the metadata of the existing link, so you do need to have sharingListSharedLinks implemented for when the existing link is not returned. The shared_link_already_exists error may not the contain the metadata of the existing link if the requested settings do…
-
The Dropbox API does not extract and return media information such as duration for audio files, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though. That being the case, to access this information, you'd need to download the file and determine the desired information…