Comments
-
This should be fixed now. Please let me know if you're still seeing any issues.
-
Thanks for the report! We're looking into it.
-
This shouldn't be occurring anymore. Please let me know if you're still seeing it.
-
No update right now.
-
Thanks for the report! We're looking into it.
-
Hi Marian, this thread is about the behavior of the ACTION_SEND intent on Android. If you're having a different issue, please open a new thread with the details.
-
Thanks for the report! We'll look into it. Also, for reference, Paul's report is due a different issue we're aware of.
-
Thanks for the report Penka! You're right, it looks like we don't currently return a good indicator of the format used for the preview. That endpoint does return either HTML or PDF, and that could change for any given sort of file over time, so the right way to handle this is to check the returned format on the fly.…
-
The only workaround would be to use list_folder to list all of the contents of the folder and monitor for changes to them, recording the latest time as the modified time for the folder.
-
API v2 doesn't return modified time in FolderMetadata, but I'll be sure to pass this along as a feature request. Regarding the order of items returned by list_folder, your app should process them in the order given in order to get an accurate representation of the state of the account. Once you have all of the metadata,…
-
Here's a small sample of how you can explicitly check for an error like NotFound: try { var metadata = await this.client.Files.GetMetadataAsync("/non-existant path"); Console.WriteLine(metadata.Name); } catch (Dropbox.Api.ApiException<Dropbox.Api.Files.GetMetadataError> e) { if (e.ErrorResponse.IsPath) {…
-
I believe that should be fixed in version 3.0.6. Please update to that and let me know if it doesn't help.
-
Hi Paul, you can find more information on this error in the documentation here: https://dropbox.github.io/dropbox-sdk-dotnet/html/T_Dropbox_Api_Sharing_SharedLinkSettingsError_NotAuthorized.htm In this case, it looks like the issue is that you're trying to set an expiration on a link using an account that doesn't have…
-
Thanks! I'm sending this along to the right people to look into it.
-
Can you share the relevant code snippet(s) and a sample link so we can check on this for you? Thanks in advance!
-
Hi Freeman, the Dropbox Business API doesn't currently expose quota usage broken down by team member like this, but I'll be sure to pass this along as a feature request. Also, I've redacted the image from your post as it contained email addresses.
-
1. The accounts array tells you which accounts have changes. Each "dbid:" string is account-specific. It's the account ID for a particular account, as used by API v2, e.g., as returned by /2/users/get_current_account. 2. The integer user ID format is used by API v1, and the "dbid:" format is used by API v2. So, if your app…
-
[Cross-linking for reference: https://stackoverflow.com/questions/38462091/net-sdk-system-aggregateexception-oauth-2-access-token-is-malformed ] It looks like you're using your app's "app key", instead of an "access token". These are different from each other. The app key identifies your app, whereas an access token…
-
You can find information on the requirements for the Dropbox PHP SDK in the ReadMe.md file included in the SDK download. According to that, version 1.1.6 of the SDK requires PHP 5.3+ with 64-bit integers. Please refer to the ReadMe for more information.
-
No, we currently only offer the approved Dropbox logos available in the branding guidelines: https://www.dropbox.com/developers/reference/branding-guide I'll send this along as a request for some specific assets for this, but I can't promise if or when that would be done.
-
For integrating with API v2 on Android, you should use the Java SDK. I'm not aware of any plans to release a separate SDK for Android specifically. There's a discussion with information about the size and method counts here: https://github.com/dropbox/dropbox-sdk-java/issues/44
-
Hi Hevak, upload_session/finish_batch will be a new endpoint, but it isn't released yet. It's referenced in the documentation for a shared error type as you saw, but you don't need to worry about using it. The existing endpoints will continue to work as expected.
-
This isn't currently possible with a single call using the Dropbox API, but I'll be sure to pass this along as a feature request! As a workaround, you'll need to mount the folder, then move it once mounted.
-
We don't have a public feature request tracker unfortunately. However, by some coincidence, the team did happen to already be working on this feature, and it just went live. Please try the temporary links again and you should find the Content-Disposition header set.
-
Thanks for following up. I think a Content-Disposition header on these links would be a good solution for this. I'm sending this along as a feature request.
-
Hi Jaume, the typical way to download a file using the API is the /files/download endpoint: https://www.dropbox.com/developers/documentation/http/documentation#files-download That returns the file content directly, so you can do whatever you need with it. (I.e., you can enforce access control ahead of time as necessary,…
-
Thanks! This is helpful. You're using WKWebView, and you already have didFinishNavigation implemented, which is where you'll grab the token from the URL. That is, switch to the redirect receiver version and access webView.URL inside didFinishNavigation. You can check if webView.URL is the redirect receiver, and parse the…
-
Have you tried to use the redirect receiver page in the latest version of your code? If you post the code I'll be happy to try to help with it further.
-
It looks like you're trying to access the /authorize page programmatically, but this is actually just a web page that you should be presenting to the user in a browser. For reference, while you can certainly implement this manually, I recommend checking out the example for the SwiftyDropbox library just as a sample of how…
-
It sounds like you're making a client-side app, so the implicit flow using a localhost redirect URI is a reasonable approach. As you saw though, by default there isn't anything being served at localhost, so you're getting that error. You can just grab the access token anyway, but you may want to run a small web server…