Comments
-
This is indicating that this particular request can't be supported either due to constraints on the backend, or because of the state of the relevant folders. For instance, the specified folder may be located too deep in the directory tree to support this feature, or otherwise the folder may be contained inside another…
-
I'm closing this as a duplicate of your other thread.
-
When the returned RelocationBatchV2JobStatus is 'complete', it will contain a RelocationBatchV2Result with a list of RelocationBatchResultEntry as the 'entries' property. Each RelocationBatchResultEntry will be either 'success' or 'failure', indicating the result for that particular file. This list corresponds to the files…
-
If there are multiple changes at the same time in the same account or shared folder, you can run in to this 'too_many_write_operations' error, which is "lock contention". That's not explicit rate limiting, but rather a result of how Dropbox works on the backend. This is a technical inability to make a modification in the…
-
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…
-
No, unfortunately the Dropbox API doesn't offer that ability, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
The error message "Dropbox token is empty" isn't from Dropbox itself, so it sounds like this is an error message written by Linnworks. That being the case, Linnworks will need to provide some guidance on that. If they have found an issue with the Dropbox API itself, they should contact us directly with the relevant…
-
The events returned by /2/team_log/get_events[/continue] unfortunately do not include a unique ID like that, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
The "<oauth2_access_token>" there is just a placeholder, and should be replaced with the actual OAuth 2 access token for the account. From the error message, it sounds like you're sending an invalid value for that (either the placeholder itself, or an invalid access token string). You should check what you're actually…
-
The extension will only appear in the "Open" menu for other users that have "linked" or authorized the app to access their own accounts via the OAuth flow. (Just accessing the extension URI itself directly won't do so.) You'll need to implement the OAuth flow in your app to allow other users to authorize the app to access…
-
Unfortunately Dropbox still doesn't offer an API for accessing file comments. I'll add this to the feature request, but I don't have any timeline as to if/when it might be done, or any other workaround.
-
Dropbox does offer an API you can use for listing, uploading, and downloading files, among other operations. You can find everything you need to get started with the Dropbox API, including documentation and tutorials, here: https://www.dropbox.com/developers You may be interested in the Getting Started guide:…
-
While the creation of new long-lived access tokens is now deprecated, we don't currently have a plan to disable existing long-lived access tokens. (If that changes, we will of course announce that ahead of time.) That being the case, you can continue using existing long-lived access token(s) without interruption. Note…
-
The access token you posted, which starts with "sl.", is a Dropbox OAuth 2 access token. Note that you should never post these publicly though, so please refrain from doing so in the future. The "sl." prefix indicates that this particular access token is a "short-lived" access token, meaning that it was only valid for four…
-
@"dotNET_Guy" Q1. Perhaps @"Andrewer016" would be so kind as to share their updated code with that fixed. Q2. Likewise, perhaps @"Andrewer016" can share this piece as well, if they updated their code to include this. Very basically though, it would look like this: foreach (var entry in status.AsComplete.Value.Entries){ if…
-
To restrict search result to matching on the filename and not content, you should set FilesSearchOptions.filename_only to true. (By the way, your match_field_options doesn't look set correctly. That takes a FilesSearchMatchFieldOptions which only has a boolean include_highlights property.) Anyway, the Dropbox API does not…
-
Unfortunately, the Dropbox API doesn't offer a way to list/filter files only since a specific date, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though.
-
Thanks for the post! I'll pass this along as a feature request, but I can't promise if or when that might be implemented.
-
@"horton" Thanks for the note! I don't have an update on this, but I've added your post to the request.
-
Thanks for the additional reports and information! The team is currently investigating.
-
Thanks for the report! We'll look into it.
-
The kind of link in your screenshot is a temporary link returned by /2/files/get_temporary_link. There isn't an option to make those shorter, but an alternative would be to use /2/sharing/create_shared_link_with_settings instead. That returns shorter shared links that don't expire by default. They do point to HTML preview…
-
Dropbox doesn't have an official best practice/recommendation for this, nor a "Default" option like you described, but I'll pass this along as a feature request. I can't promise if or when that might be implemented though. So, you can do whatever works best for your app. I suggest something like option 2, but instead of…
-
It sounds like you're looking for the feature called "full-text search". That's only available to accounts with certain Dropbox plans. Please refer to the help center article for more information.
-
Thanks for the report. There's an issue with that button currently. Open an API ticket from that account owns that app, and let us know which one you're referring to, and we'll get that enabled for you manually as a workaround.
-
This "The given OAuth 2 access token is malformed" error is referring to the oauth2_access_token parameter value you're passing to the Dropbox constructor. It means that the value you're passing in is not a valid Dropbox access token. You'll need to correct that to make sure you're passing in a valid access token for that…
-
Yes, the Dropbox API does offer the ability to search for a particular query in a particular file type under a particular path. I see you're using searchBuilder though, which is deprecated, so you should update to searchV2Builder instead. The SearchV2Builder documentation shows what methods/parameters you can use. A…
-
If there are multiple changes at the same time in the same account or shared folder (or more accurately, "namespace"), you can run in to this 'too_many_write_operations' error, which is "lock contention". That's not explicit rate limiting, but rather a result of how Dropbox works on the back-end. This is a technical…
-
Can you clarify what you mean when you say you are only getting "null"? Is that the value being returned by the CreateFolderV2Async method itself, or is the method raising an exception? Also, the code you shared here does not show you retrieving the return value, nor handling any exceptions. Additionally,…
-
I see you're using v4.7.0 of the Dropbox .NET SDK, which is relatively old now. We recommend updating to the latest version, currently v6.16.0. In any case, you mentioned you're using /files/create_folder_v2. That's the API route itself, which would correspond to a native method in the SDK, such as CreateFolderV2Async.…