Comments
-
The /2/files/download endpoint is a "content-download" style endpoint, meaning that on a successful call, the raw requested file data is returned in the response body. I see you're not using an official Dropbox SDK, so you may need to refer to the documentation for your client/platform for information on how to handle data…
-
@"22-modifier" It looks like there wasn't an update on this thread, and especially since you seem to be getting a slightly different error, I recommend reaching out directly to the maker of that app for help with it.
-
@"VoroMotors" Здравко is correct; by default, API calls operate in the "member folder" of the connected account, not the "team space", so anything not in the member folder won't be found by default. You can configure API calls to operate in the "team space" instead though. To do so, you'll need to set the…
-
@"programmer" Sure, I'll ask support to resend their message.
-
@"XiangZhou" Здравко is correct; the Dropbox API doesn't offer a way to merge folders like this directly, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though. You'd need to handle this in your code like they described. If/when you need to move multiple items, using…
-
@"programmer" I just checked on that ticket, and I see it did receive a response from support yesterday. Please make sure the email address registered to your account is correct and can receive email, and check your spam folder.
-
We looked into this and we believe we've mitigated that particular issue. Please let us know if you're still seeing any issues. Thanks again!
-
Thanks for the report! Yes, for intermittent issues like this, you can just retry the request. I'll ask the team to investigate the cause based on this request ID.
-
@"babydream" Yes, as Здравко said, a 'shared_link_already_exists' error from sharing_create_shared_link_with_settings indicates that the call failed because a link already exists for that file. As for why it fails in one environment and not the other, check which account(s) you're calling in each. If you're connected to…
-
Thanks for the feedback! I can't make any promises myself as to if or when this might be done, but I've sent this along to the team.
-
No, unfortunately the Dropbox API doesn't offer functionality like that, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
@"credentially-dev-team" Dropbox allows you to upload empty files (that is, files with size of 0), but empty files are not valid zip files.
-
@"credentially-dev-team" Both samples you shared here show 'size=0', meaning that both files were uploaded with empty contents. Please check your upload code to make sure you're uploading the non-empty contents that you expect for the files.
-
@"quandt" Thanks for the feedback! I'll pass this along to the team.
-
@"igor-plotnikov" Can you clarify what you mean when you say the page won't open? Are you getting some error? That link is working for me. In any case, for the official Dropbox Python SDK, you can find examples of getting and using a refresh token at the following links: *…
-
I'll be happy to help with any issues you're having with the Dropbox API, but I'll need some more information. Please reply with: * the name and version number of the platform and SDK/library you are using, if any * the steps to reproduce the issue, including relevant code snippet(s), but don't include any access or…
-
Thanks for following up. I'm glad to hear you got this sorted out. Just for reference, to answer your questions: The SDK still doesn't offer an option to force the browser flow, but it sounds like that's no longer needed in your case anyway since you got this working. While the app name you register on Dropbox should match…
-
@"boeboe" I don't have an update on this feature request, but thanks for the feedback!
-
@"justam" Yes, we only support embedding Dropbox shared links via the Embedder, not using an iframe directly. Please follow the instructions here for using the Embedder.
-
@"Rushik Binary" You can also find more information on this at the following locations: * https://developers.dropbox.com/oauth-guide * https://www.dropbox.com/developers/documentation/http/documentation#authorization * https://dropbox.tech/developers/using-oauth-2-0-with-offline-access
-
@"ravikiranreddy" You can also find more information on this at the following locations: * https://developers.dropbox.com/oauth-guide * https://www.dropbox.com/developers/documentation/http/documentation#authorization * https://dropbox.tech/developers/using-oauth-2-0-with-offline-access
-
Thanks! I'm trying this out now, but I can't seem to reproduce that error. From what I can tell though, it's actually coming from iOS itself and not directly from the Dropbox iOS app. Given that you mentioned it occurs when the Dropbox app would be sending you back to your app, it sounds like it would be related to the URL…
-
Whether using "offline" access or not, "authorization codes" can each only be used once, and are only valid for a short period of time. Apps should use authorization codes once immediately upon receiving them. "Refresh tokens" do not expire by default, and can be stored and re-used repeatedly for further API calls without…
-
@"MosheS" No, I don't have an update on this.
-
[Cross-linking for reference: https://stackoverflow.com/questions/76847429/dropbox-ios-sdk-obj-c-authorisation-with-dropbox-app-installed-produces-error ] First, for reference, can you share the version number of the Dropbox SDK that got installed by Cocoapods, and also share a screenshot of the screen with the error…
-
@"Thang2000" I'll pass this along as a feature request for support for setting the write mode when moving/copying files, but I can't promise if or when that might be implemented. Also, you can find an example of catching an API error in the Python SDK here.
-
@"STEALTHbits" Yes, the team worked on tracking this down and resolving it.
-
The https://www.dropbox.com/1/oauth2/display_token page was only built for the response_type=token flow, not the response_type=code flow. For example, https://www.dropbox.com/1/oauth2/display_token?code=thiswillnotshow will not show the value, but https://www.dropbox.com/1/oauth2/display_token#access_token=thiswillshow…
-
I don't believe we currently have any documented guarantee as to whether or not the Python SDK itself is thread-safe, so I can't make assurances on that, but I'll pass this along as a request to the team for that. I can't promise if or when that might be done though. For reference though, the Dropbox Python SDK uses the…
-
Unfortunately it's not possible to add additional owners/developers to an app, such as to allow other accounts to view/configure an app's settings on the App Console, but I'll be sure to pass this along as a feature request. I can't promise if or when that might be implemented though.