Comments
-
No, unfortunately the Saver doesn't offer this information, but I'll pass this along as a feature request.
-
Can you elaborate on what exactly you mean when you say they are "still not working"? Are you getting the same "Internal Server Error" as before? I re-enabled some functionality that was disabled and causing it to fail before. It's now working properly for me. In any case, is the updated code working for you? If so, please…
-
Thanks for the report! Can you share: - the version number of SwiftyDropbox you're using - the version(s) of iOS you're seeing this with - the exact `open url` code you have in your app delegate Thanks in advance!
-
This functionality is only available to the "team member file access" permission. There isn't a way around that unfortunately. Apologies I don't have better news for you!
-
When using the "update" write mode, the "parentRev" value should be the latest FileMetadata.rev value you saw for the file. That allows you to safely overwrite the file without accidentally overwriting a newer version. (It will create a conflict if the rev value you supply isn't actually the latest.) Based on your…
-
Thanks for the report. I can't seem to reproduce this issue though. The /2/files/delete_v2 endpoint is successfully deleting a folder with a period in the middle and returning the expected response for me. Can you share a sample request/response that isn't working as expected, including response headers? Be sure to redact…
-
@"jianwen" Please open an API ticket with details so we can check on this for you: https://www.dropbox.com/developers/contact Thanks in advance!
-
Thanks for the report Farzad! It looks like we haven't updated the source code on GitHub or the deployed version for API v2, so it wasn't currently working. I temporarily re-enabled it, so it should be working again. I'll ask the team to update the source and deployed app. Please use the code from the documentation itself…
-
Thanks for writing this up! Unfortunately, this behavior is sometimes expected. Even in path_display, the original casing isn't always available for all components. There's a note about this in the API v2 documentation, under "Case insensitivity": Also, while Dropbox is case-insensitive, it makes efforts to be…
-
No, unfortunately there isn't a way to create shared links in bulk, but I'll pass this along as a feature request.
-
You can get an API app key and secret (a.k.a. consumer key and secret) by creating a Dropbox API app at: https://www.dropbox.com/developers/apps/create Once you have an app created, the app key and secret will be available by going to the App Console and selecting the app here: https://www.dropbox.com/developers/apps
-
The `client` variable would just be a variable like any other in your app. If the `nil` check is coming back like that, it means it is not currently set. You need to set and manage it in your code. (For that reason, `DropboxClientsManager.authorizedClient` is generally more convenient.)
-
That's correct, the unlinkClients method clears the access tokens stored by the SDK, but it does not sign the user of the Dropbox web site in the browser. (The API access tokens are separate from the web site session.) The user can sign out (and sign back in, if they want) manually on the web site. Or, if necessary, the…
-
For C#/.NET, we recommend using the official API v2 .NET SDK: https://github.com/dropbox/dropbox-sdk-dotnet There's an example of uploading using it here: https://github.com/dropbox/dropbox-sdk-dotnet/blob/master/dropbox-sdk-dotnet/Examples/SimpleBlogDemo/Controllers/EditController.cs#L77
-
Thanks for the post. I can't promise if or when the team would update the webhooks functionality to allow this, but I'll send it along as a feature request.
-
Thanks for the post! I can't make any promises, but I'll send this along as a request to raise the dependency version.
-
@"xtremebytes" It depends on the use case, so it's up to the developer to decide what makes sense for their app. The newer `forceReauthentication` can be more inconvenient than `forceReapprove` though, since the user is forcibly signed out and has to sign in again. With `forceReapprove`, the user can still choose to switch…
-
@"MathanKumar" Unfortunately, it's not clear what the issue may be, and it's likely related to the particular project configuration. If you're still seeing this, please share a sample project that reproduces the issue so we can reproduce it and investigate. Thanks!
-
Thanks for the report. We could use some more information to look into this. I'll follow up with you privately so you can share the output without posting it publicly.
-
Apologies for the trouble, it looks like the SwiftyDropbox readme is a little out of date. This line: case .routeError(let boxed, let requestId): should instead be: case .routeError(let boxed, let userMessage, let errorSummary, let requestId): I'll ask the team to update that in the documentation.…
-
The shared link feature, such as the shared link you posted, allows a user view-only access to a file or folder. It doesn't allow an app to automatically copy/mount that folder in another user's account. (They can manually download a copy to their own account via the shared link page though.) Exactly what you should use…
-
You do need to use the full path when specifying the file you want to download. Using files_list_folder and files_list_folder_continue will give you every entry, and you can get the full path from the returned (File)Metadata.path_lower. (I.e., use `entry.path_lower` instead of `'/'+entry.name`.)
-
Algunos sistemas operativos tienen límites de longitud de caracteres, pero la API de Dropbox no lo hace. Si tiene problemas con la API en sí, comparta el resultado completo de la llamada API fallida. --- Disculpe nuestras traducciones Nuestras traducciones fueron creadas usando un traductor en línea. Nos gustaría apoyar…
-
It sounds like you're referring to the behavior of the Dropbox OAuth app authorization flow where, if the user has already authorized your app, then they may be automatically redirected back to your app instead of having to provide explicit authorization again. If the user fully revokes the app's authorization, e.g., via…
-
The ListFolder/ListFolderContinue functionality is paginated, meaning that each call to ListFolder or ListFolderContinue will only contain a portion of the overall results. In your second piece of code, you're overwriting the `list` variable with each call to ListFolderContinue without reading what it contained from the…
-
Can you share the code you're using and a sample URL that reproduces the issue so I can take a look? Thanks in advance!
-
@"jianwen" Thanks for following up. I'm glad to hear that search is working properly for you again. I believe you should automatically get emailed when there's a new reply on a thread you're following, or when you're mentioned. I can't offer support for the forum itself, but I recommend making you're following any threads…
-
If you're seeing these fail quickly, please open an API ticket with a sample we can reproduce the issue with so we can look into it: https://www.dropbox.com/developers/contact Thanks in advance!
-
That's correct, the `path` parameter value for files_download_to_file should be the full remote (Dropbox) path of the file you want to download. Using files_list_folder is the right way to list files and folders under any particular path. (Use the empty string "" as the path for root if that's what you're looking for.) If…
-
Is that the exact code you're running? Running that, I get `malformed_path` on your `to_lookup`, not `from_lookup`. (Perhaps you reversed them when simplifying the code for posting here?) Anyway, your `to_lookup` value is malformed. It ends in a "/". It shouldn't end in "/", and should instead include the full path where…