Comments
-
You can upload files of any size, i.e., larger than 150 MB, by using "upload sessions": https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_UploadSessionStartAsync_1.htm…
-
The Dropbox API v2 Java SDK offers the ability to upload and download files programmatically, but it doesn't offer pre-built "sync" functionality. You'll need to use the uploading and downloading capabilities to develop whatever kind of sync logic you want in your app. I'll send this along as a request for pre-built sync…
-
Please contact Business support: https://www.dropbox.com/support/email/business_and_teams/submit They should be able to offer information on the current state of your team, and when you can migrate to the new configuration.
-
Upon some further investigation, I've determined this can happen if you have a deleted file at the path where the app folder for the app would be normally created (e.g., /Apps/<app folder name> if your account is set to the English locale). You can work around this issue by permanently deleting the deleted file at that…
-
Thanks for the report! We'll look into that 500 error. Also, /1/oauth2/authorize_submit is not technically just part of API v1. It's part of the OAuth 2 flow, which is used by both API v1 and API v2. It just has the "/1/" component as a matter of how it was originally implemented.
-
Yes, the download is complete when the response fires. If the uploaded version is correct, please check the downloaded copy directly to see if it has the expected data.
-
Make sure you have AuthActivity registered in your app's package, and only in one, as shown here: https://github.com/dropbox/dropbox-sdk-java/blob/master/examples/android/src/main/AndroidManifest.xml#L26 If you had others registered but removed them, try restarting your device.
-
Dropbox just uploads/downloads whatever data it is given, and it doesn't do anything special for .sqlite files. That error message isn't coming from Dropbox itself, but it seems to indicate that the data isn't what was expected. Can you first check the file metadata (in response.0), e.g., to see if the file size is the…
-
You shouldn't have to reconnect your account if you add a folder. I tried your code, and it seems to be working for me. If you're still seeing any issues, please let me know the answers to the above questions, and any steps necessary to reproduce the problem.
-
Thanks for elaborating! Yes, it sounds like this is what you're looking for then. You would set "access_inheritance" to "no_inherit" for that. Note that this only applies to the new team space and member folders configuration though. Your team may not have that yet.
-
Nothing in your code looks wrong, so we'll need to investigate further. Please let me know: - What version number of the SDK do you have installed? - Are you seeing the "User is already authorized" message? - Are there files/folders to list in the connected account? (If your app is using the "app folder" permission, note…
-
Unfortunately we don't have a version of the OAuth flow without JavaScript, but I'm sending this along as a feature request.
-
As a matter of security, Dropbox doesn't allow the use of http:// with a non-localhost redirect URI. I'll ask the team to look into adding an exception for .local, but I can't make any promises as to if or when that would be done.
-
1. You will generally only need to call `startOAuth2Authentication` once per user. Note that the user can revoke access though, so you should provide UI for allowing them to link again later if they want. You can technically put it in OnCreate, but it usually makes sense to only call it when the user explicitly indicates…
-
I'm not sure I understand your question. Can you elaborate? This endpoint should change the inheritance policy of a shared folder in a team shared Dropbox. Have you tried it, and if so, did you run in to any issues with it? Thanks in advance!
-
Thanks for writing this up. There isn't a way to get to request only deleted folders, unfortunately, or a way to tell if a "deleted" entry was most recently for a file or folder, but I'll pass this along as a feature request. And yes, it is expected that deleted entries are returned for permanently deleted items. (This is…
-
That line should run when you click on the "Login with Dropbox" button, not the "+" button. If you're seeing the "+", it means you've already connected Dropbox. Anyway, I just tried it and it's working for me. (Also, make sure that you're actually debugging, and not just running. I.e., use the "bug" icon when in Android…
-
For Android, we recommend using the official Dropbox API v2 Java SDK: https://github.com/dropbox/dropbox-sdk-java There's an example Android app here: https://github.com/dropbox/dropbox-sdk-java/tree/master/examples/android Your AndroidManifest.xml should be set up as shown here:…
-
[Cross-linking for reference: https://stackoverflow.com/questions/49070230/where-should-i-locate-startoauth2authentication ] 1) The startOAuth2Authentication method is what kicks off the Dropbox app authorization flow, so you should put it wherever in your app you handle the request from the user to connect their Dropbox…
-
Lorsque vous supprimez la ligne `var Dropbox = require ('dropbox'). Dropbox;` line, vous devez changer la façon dont vous accédez au constructeur. Au lieu de `new Dropbox`, faites` new Dropbox.Dropbox`. --- When you remove the `var Dropbox = require('dropbox').Dropbox;` line, you will need to switch how you access the…
-
I'll make a note to follow up here if/when this is added.
-
L'importation de Node dont je parle est la `require ('dropbox')` dans votre code, et l'importation JavaScript à laquelle je fais référence est le `<script src=... `dans votre code. --- The Node import I'm referring to is the `require('dropbox')` in your code, and the JavaScript import I'm referring to is the `<script…
-
Cela dépend de l'environnement dans lequel vous exécutez et de la manière dont vous importez la bibliothèque. Il y a quelques fils connexes: https://www.dropboxforum.com/t5/API-support/Installations/m-p/263451#M15391 https://github.com/dropbox/dropbox-sdk-js/issues/172 https://github.com/dropbox/dropbox-sdk-js/issues/178…
-
What version of the JavaScript SDK are you using? There was a binary formatting issue in v3.x, fixed in v4. Please upgrade to v4 if you aren't using that already and let me know if that doesn't help.
-
No, I don't believe there's an equivalent global in the SwiftyDropbox SDK, but I'll pass this along as a feature request.
-
[Cross-linking for reference: https://github.com/dropbox/dropbox-sdk-python/issues/142 ] I can only offer help with the API, so any questions about the Paper product itself would be better served in Find answers > Dropbox Paper or Share an idea > Dropbox Paper.
-
It sounds like your Business team is using the new team space and member folders configuration that some teams have access to. You can find information on interacting with this configuration in the Namespace Guide. The Objective-C SDK hasn't been updated with support for the "Dropbox-API-Path-Root" header yet though. I…
-
Apologies for the delay. This should be fixed in v3.6.0.
-
Unfortunately, this caused a different issue. Please upgrade to v4.0.0 and use the Buffer workaround again. Apologies for the bother.
-
The 200 or 409 are just some possible status codes, and only indicate success/failure at a high level. The response body would contain more specific success or error information, but your screenshot doesn't include it unfortunately. The SDK reads the response body and converts it to the native return type or exception,…