Comments
-
@"kamaldileep42" There are a number of ways to do this. Specifying the path itself, e.g., "/test/version1" as you mentioned, is one way, but, by default, that will only enable you to access shared folders inside your own team member folder. For more information on how this works, and documentation on how to access shared…
-
The DownloadZipAsync method will return the zip data directly to your app. It does not itself return a link to the data. You can have your app do whatever you want with it (e.g., serve it back to the user, save it locally, etc.). You can find an example of accessing the data here:…
-
Yes, you can invite members to shared folders programmatically using /2/sharing/add_folder_member: https://www.dropbox.com/developers/documentation/http/documentation#sharing-add_folder_member Note that this does not automatically add the shared folder to their accounts though. They would need to accept the invitation…
-
Can you print out the response body? It should contain a more useful error message.
-
It sounds like you're not formatting this request properly. For reference, you can find the documentation for it here: https://www.dropbox.com/developers/documentation/http/documentation#oauth2-token There's also a sample in this old blog post that may be helpful:…
-
Once you retrieve an access token, you can store and re-use it for future calls. While you can revoke access tokens on demand, they don't expire on their own. To list the contents of folders, you should use /2/files/list_folder[/continue]:…
-
@"aesanne" You can find information on each of the errors in the documentation here. The 'not_found' error means "There is nothing at the given path". You should check the 'path' value you're supplying to the call to make sure you're supplying a valid one. One good way to check what is in the account is to call…
-
Apologies for the delay! Yes, this should be fixed in the latest release. Let us know if you're still seeing any issues.
-
That's correct, the API doesn't offer access to transcoded or HLS streams, but I'll pass this along as a feature request. The 'raw=1' shared link URL will return the original file data.
-
@"ajwaxman" That's a preview/alpha endpoint, not meant for general use or for use in production code, as it's subject to change or removal without warning.
-
The implementation details of the Dropbox web site are subject to change without notice, and may not always use the standard public Dropbox API. The /upload_web_file_block endpoint is not part of the public API, so I don't have any documentation to share for that. It's also not possible to configure the implementation of…
-
This should be fixed now. Let me know if you're still seeing any issues.
-
Yes, you can use the OAuth app authorization flow to get an access token in a web app. I recommend reading the OAuth guide and the authorization documentation for information on how this works.
-
I can't speak to why any particular request has or hasn't been implemented. I've sent this request along to the team, but I don't have an update on it. I'll follow up here if/when I do.
-
Exactly how you structure this is up to you, but you may wish to just have each instance of your app implement the OAuth app authorization flow itself. Having more than one access token per app-user pair is allowed, so you can just have each instance get and store its own access token. If you do want them to share an…
-
Nothing looks clearly wrong in your code. I also just tried this and can't reproduce the issue. Are you still seeing this? If so, is there anything on your network connection, e.g., firewall, proxy, etc. that may be interfering?
-
I can't speak to why any particular request has or hasn't been implemented. I've sent this request along to the team, but I don't have an update on it. I'll follow up here if/when I do.
-
Para cargar archivos desde .NET, recomendamos usar el Dropbox API v2 .NET SDK oficial: https://github.com/dropbox/dropbox-sdk-dotnet No tenemos muestras escritas en VB, pero hay algunas muestras escritas en C# que puede consultar y trabajar desde:…
-
No, this has not been changed with the latest release.
-
These links do expire after four hours. If you attempt to access an expired link, it will fail. To be clear though, are you saying the returned link fails less than four hours after it was retrieved? In general though, if you need to access file data, you should use /2/files/download. It returns the image data directly:…
-
The Dropbox API unfortunately doesn't offer a better way to do this, but I'll pass this along as a feature request.
-
@"Jonathancarter" That is one way to set the app key. Can you double check if you're maybe accidentally adding two of those, or perhaps are elswhere explicitly setting `Dropbox.appKey`?
-
1. The /2/sharing/relinquish_file_membership endpoint is meant for giving up access to a file that has been shared with you. If it's a file you own (i.e., it's in your account), you can't do so. 2. If the endpoint isn't working as expected for a member, please share the code and full output of…
-
@"WayneSmallman" It sounds like you probably are somehow setting different app keys in your different environments, and only one has the extra dev domain registered. I'll follow up on your ticket with some more specifics. @"Jonathancarter" Likewise, according to the URL you shared, you're using the app key…
-
In order to use the Dropbox Chooser or Saver you need to pre-register the domains you'll use it on. You can do that by entering them under "Chooser/Saver domains" on your app's page on the App Console: https://www.dropbox.com/developers/apps If you don't do so, you'll get this error message when attempting to use the…
-
It sounds like you're referring to the "shared file" type of sharing covered by /2/sharing/list_received_files[/continue] in particular. No, the Dropbox API doesn't list the owner or recipient for this kind of sharing, but I'll pass this along as a feature request.
-
That response does indicate that the file was successfully uploaded. There are a few things to check to make sure you're looking for it in the right place: - If your app is registered for the "app folder" permission, the files will be uploaded in a special "app folder" created for your app. If you are using that…
-
Yes, you can load the Dropbox API v2 JavaScript SDK via a script tag, as shown here: https://dropbox.github.io/dropbox-sdk-js/tutorial-Getting%20started.html
-
If you uploaded the file using the same access token, that does mean you're using the right account to download from. (It doesn't indicate what permission level your app has though.) Please make sure you're using the correct path value per my last reply.
-
When you say you're using the "correct" path, are you accounting for the typo? (The typo is the misplaced 'a' in "deatils".) To be clear, based on the screenshot you supplied, the path you would need to use would be: - if you're using a full Dropbox app: "/Apps/AndroidDbAppStorage/deatils_item.json" - if you're using the…