Comments
-
Thanks, it sounds like it is probably specific to that device then. Do you have any restrictions/parental controls enabled on that device currently by any chance?
-
For using API v2 from JavaScript, we recommend using the official Dropbox API v2 JavaScript SDK: https://github.com/dropbox/dropbox-sdk-js The equivalent method is usersGetCurrentAccount: https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#usersGetCurrentAccount__anchor
-
Thanks! That's helpful. It looks like the issue here is that the certificate chain for https://pdforms.px.be is incomplete: https://www.ssllabs.com/ssltest/analyze.html?d=pdforms.px.be&hideResults=on That being the case, the Dropbox servers can't verify the connection. (They work differently than your browser.) If you're…
-
Thanks! I haven't heard of this behavior happening before so we'll have to look into it. Just to confirm though, can you try the sample app on that device? It would be good to know if there's something just specific to that device, or if it's something about that combination of iOS version and your code. Also what version…
-
[Cross-linking for reference: https://stackoverflow.com/questions/45805431/c-sharp-compare-files-on-disk-with-those-on-the-cloud-and-download-files-that-di ] If you're using .NET, we recommend using the official Dropbox API v2 .NET SDK: https://github.com/dropbox/dropbox-sdk-dotnet There's a guide there for getting…
-
The SDK you're using uses API v1 which is deprecated and being retired soon. You should migrate to API v2 instead. We don't have plans for an official PHP SDK for Dropbox API v2, but you can use a third party library or, you can call the HTTPS endpoints themselves. For example, to access file content, you can call…
-
No, nothing new here.
-
Thanks! We'll look into it. You may want to use `raw=1` instead of `dl=1` though, as `raw=1` is meant for displaying file content, and `dl=1` is only meant for downloading: https://www.dropbox.com/help/desktop-web/force-download The Content-Type is still as expected when using `raw=1`.
-
In this context, by users I'm referring to the different Dropbox accounts, i.e., each registered to Dropbox with a different email address. The Dropbox API was built with the intent that each end-user of your app would connect their own Dropbox account. In the typical case, this isn't really something where you can spread…
-
The Dropbox API does offer the ability to upload files, so this should be possible: HTTP: https://www.dropbox.com/developers/documentation/http/documentation#files-upload Objective-C:…
-
It looks like you're trying to integrate with Dropbox via Zapier. We can't offer support for Zapier itself, as it's made by a third party, but we'll be happy to look into this on the Dropbox side of things. Can you provide steps to reproduce the issue or relevant code, as well as a sample URL that produces this issue?…
-
Hi Patrik, thanks for the report. This is an issue with the latest version of the SDK. We're working on it. Apologies for the trouble!
-
Dropbox unfortunately doesn't provide any sort of programmatic interface for managing these Smart Sync settings, but I'll pass this along as a feature request.
-
Thanks for the report! Those three lines should be safe to ignore. The first one is just checking the network availability, and the other two are checking for the official Dropbox app, but the "null" error means nothing is wrong. Can you elaborate a bit on what happens though? Is the openURL block getting called at all?…
-
Yes, the Dropbox API does offer the ability to both share folders and upload into shared folders. To share a folder with another account, you can use /2/sharing/share_folder to share the folder, and /2/sharing/add_folder_member to invite another account. On the recipient account, you can list folders that you can add to…
-
It looks like you're throwing the UnsupportedOperationException in your own code in the catch block. Can you share the full error that is causing the catch block to run?
-
1. The 150 MB limit is technically not an exact limit. It depends on some network conditions which can vary, so even uploads smaller than that can sometimes fail. It looks like you already found how to change the timeout, but in general we do recommend using chunk sizes smaller than that to begin with. Using a smaller…
-
@"tslanina" That's correct, these NSURL parameters were changed to NSString in v3.0.11 after I wrote the examples above. I'll send this along to the team as a request to update the method/parameter names to clarify.
-
Dropbox does not prohibit or require Dropbox API apps to be paid. How you distribute your app is up to you. We do encourage developers to offer Dropbox in both free and paid versions of their apps, if they have them: https://www.dropbox.com/developers/reference/developer-guide#great-apps In any case though, you should be…
-
Apologies, it looks like the data ingress guide is worded a bit confusingly: "Rate limits are applied to the OAuth access token used to make the request. For user-linked apps this means rate limits apply per user who has linked your app." Note that the first sentence isn't written with the potential of having multiple…
-
Hi Mark, I'm not sure offhand what might be causing this. We're looking into it and I'll follow up here once I have more information for you.
-
The 'dropbox.client' functionality you're using is actually for the deprecated API v1. You should update to the latest version and use it as documented here, which uses API v2. To upload a file, you would use files_upload. To download a file you would use files_download or files_download_to_file. There's an example that…
-
Unfortunately Dropbox doesn't offer a way to open the app to a specific file or folder, but I'll pass this along as a feature request.
-
Yes, when using upload sessions, you supply the WriteMode for the file in the CommitInfo when calling /2/files/upload_session/finish (or /2/files/upload_session/finish_batch, where it's inside each UploadSessionFinishArg): https://www.dropbox.com/developers/documentation/http/documentation#files-upload_session-finish…
-
Webhooks are currently working, but there are a few ways for issues like this to occur for specific webhook URIs. If you haven't already done so, please open an API ticket from the account that owns the relevant app(s) with the details so we can look into it specifically: https://www.dropbox.com/developers/contact
-
I don't have an update on this yet. I'll follow up here once I do.
-
The Dropbox API doesn't offer anything quite like this. It accepts uploads via a specific interface using OAuth, not basic auth. I can't recommend any other third party solutions in particular, but perhaps someone else on the forum can.
-
No, I don't have an update on this right now. I'll follow up here once I do.
-
No, unfortunately there isn't a way to request the list of deleted items only, but I'll pass this along as a feature request.
-
Hi Dario, this error indicates that you're making more requests than allowed in particular amount of time. There are a few ways to run in to this. For example, are you making multiple identical calls to listFolder at the same time? That will cause this error, so make sure you don't call listFolder for any particular path…