Comments
-
Thanks for the additional information. In your original post though, you said "the app just quits with out throwing any errors after the redirect back to the app", however in your last reply you said it "still fails to redirect". Can you clarify what redirect does or doesn't occur, and when the app quits exactly? In any…
-
What version of iOS are you running? The only thing that looks potentially wrong is that you're using the older version of the openURL method. There's a note in the tutorial here about that: https://www.dropbox.com/developers/documentation/swift#tutorial You can use this version for 9.0+: func application(app:…
-
For reference, we've now reverted the behavior change, so the double slash version should work again. We do recommend only using a single slash though.
-
Apologies for the inconvenience Pankaj! We of course never want to break apps, and we email and post on the blog whenever we are planning a breaking change or deprecation. This change in validation wasn't intended to be a breaking change though, so there wasn't any outreach.
-
This should be fixed now. Please let me know if you're still seeing any issues.
-
That's very helpful, thanks Martin! We're looking into it.
-
Hi Martin, can you share a screenshot of that so I can make sure I understand the issue and get it to the right people? Thanks in advance!
-
This is fixed now. Please let us know if you're still seeing any issues.
-
Thanks for the report Martin! We're looking into it.
-
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