Comments
-
I see you also posted this on GitHub so I'll close this and follow up with you there: https://github.com/dropbox/SwiftyDropbox/issues/349
-
You can find a history of changes to the Dropbox API specification here: https://github.com/dropbox/dropbox-api-spec/commits/main We also have a blog where we post announcements about the API here: https://dropbox.tech/developers Additionally, you should receive emails for API announcements to the email address on the…
-
I see you're getting a 200 status code which should indicate that the call completed, but I don't see the actual response body here. Can you print out the response body? I can't offer help with fetch itself so you may need to refer to the fetch documentation for information on using it.
-
@"abiluck" The request for that is still open with the team, but I don't have any news on that right now. I'll follow up here with any update on that.
-
Thanks, that's helpful. It looks like you're running this sample project with the latest version of the 'dropbox' package (currently v11.25.0), however this sample project was only written for an older version. Attempting to use it with the latest version will fail like this due to subsequent changes in the 'dropbox'…
-
The 'mdwebhook' project doesn't contain any reference of 'SecureCookieSession', so can you share the full stack trace and relevant code for context? Thanks!
-
No, unfortunately there isn't a way to have the Dropbox Saver return the file metadata or link like this, or other way to directly identify the saved file(s), but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
That's correct, thanks and happy new year @"Здравко"!
-
No, unfortunately the Dropbox API doesn't offer a way to upload a file and get a shared link for the file in the same call, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
That's correct, v11.25.0 of the 'dropbox' library depends on at least v1.12.0 of 'six', so you need at least that version to get this working.
-
What version of 'dropbox' do you have installed, and what version of 'six' do you have installed?
-
You can download from a Dropbox shared link directly by modifying the URL parameters as shown here: https://help.dropbox.com/files-folders/share/force-download Or, you can use the /2/sharing/get_shared_link_file functionality on the API, documented here:…
-
Can you clarify what you mean when you say you are "not sure if I am getting the right stream in the api response"? From your original description, it sounds like you are getting data back from the Dropbox API. That data would be the thumbnail image content for the requested image file. You may want to save that as an…
-
I'm sorry to hear you've have an unsatisfactory experience with the documentation. If you want to share any specific feedback I'll be happy to pass it along to the team to see if we can improve it in the future. Thanks!
-
This doesn't appear to be error output from the Dropbox API itself. It looks like your client wasn't able to successfully resolve the Dropbox API hostname in the first place (for reference, it is resolving correctly for me). That is, it looks like your client is attempting a DNS lookup using your DNS server at 192.168.1.1…
-
It sounds like you have the Dropbox side of this working, in that you're getting the 'application/octet-stream' result back from /2/files/get_thumbnail_v2 as expected. We can't provide support for using React Native though, as that's not made by Dropbox. Perhaps another developer here on the forum happens to have some code…
-
@"skidooer_31" For help with the Dropbox sign in process please reach out to support: https://www.dropbox.com/support/
-
For guidance on interacting with the Dropbox filesystem, such as finding and using paths, managing sharing, etc., I recommend reading the following guides: * https://developers.dropbox.com/dbx-file-access-guide * https://developers.dropbox.com/dbx-sharing-guide * https://developers.dropbox.com/dbx-team-files-guide Those…
-
This download is working for me. Can you elaborate on exactly how you're reproducing this error? E.g., please share whatever steps, code, browser/version, etc. you're using when you see this error.
-
The Dropbox API offers the ability to retrieve some metadata about files, such as file name and size, using endpoints such as the /2/files/get_metadata endpoint. It also exposes some basic media file information, such as dimensions and time_taken, where available. This unfortunately doesn't include the full EXIF data…
-
The Dropbox Java SDK does not use the Log4j package and so would not be subject to Log4j vulnerabilities. Hope this helps!
-
We don't offer paid assistance like that unfortunately. If you're having trouble with a third party application or plugin, such as "Thrive Architect", please reach out to its makers for help. If you're having trouble with the Dropbox API itself, please feel free to share the relevant details and we'll help however we can.
-
I'm not sure I understand your latest message. Do you have a question a I can help with?
-
It sounds like you're trying to register your "Chooser / Saver / Embedder domains". When doing so, you should enter only the domain itself, not the protocol. That is, input just "immop.be" (without the "https://").
-
Thanks for writing this up. I'm glad to hear you already sorted this out. I'll ask the team to improve the error reporting. For reference, there are two ways to request offline access. One requires the app secret when performing a refresh, and one does not: * using PKCE: This is meant for client-side apps and does not…
-
No, unfortunately these settings are not available via the API, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though. You can find everything that is available in the documentation: https://www.dropbox.com/developers/documentation/http/teams
-
You can check the HTTP status code of the response to see what the result is. For example, a 200 indicates success.
-
Emails about API apps like this, such as about the status of a webhook URI, are sent to the email address on the account that owns the relevant API app. If you wish to change the email address on your account, please refer to the instructions here: https://help.dropbox.com/accounts-billing/settings-sign-in/change-email…
-
If you're making multiple changes at the same time in the same account or shared folder, you can run in to this 'too_many_write_operations' error, which is "lock contention". That's not explicit rate limiting, but rather a result of how Dropbox works on the back-end. This is a technical inability to make a modification in…
-
A 'restricted_content' error from /2/files/download means: restricted_content Void The file cannot be transferred because the content is restricted. For example, sometimes there are legal restrictions due to copyright claims. If the file is marked restricted like this, you will not be able to use the Dropbox API to…