Comments
-
Thanks for the report! The 500 on the web site definitely sounds like a bug on our side. We're looking into it. For the `invalid_access_token` issue, can you share the code you're using to generate and use the access token? Thanks in advance!
-
Thanks for the report! We're looking into it.
-
Dropbox API v2 now supports listing the contents of a shared link for a folder. This can be accomplished using the same interface as listing a folder in a connected user's account, via the list_folder functionality. To list the contents of a shared link for a folder, you instead provide the shared link URL in the…
-
Dropbox API v2 now supports listing the contents of a shared link for a folder. This can be accomplished using the same interface as listing a folder in a connected user's account, via the list_folder functionality. To list the contents of a shared link for a folder, you instead provide the shared link URL in the…
-
Dropbox API v2 now supports listing the contents of a shared link for a folder. This can be accomplished using the same interface as listing a folder in a connected user's account, via the list_folder functionality. To list the contents of a shared link for a folder, you instead provide the shared link URL in the…
-
Não temos documentação sobre isso, mas se você estiver procurando por interagir com o serviço Dropbox, você pode usar a API Dropbox: https://www.dropbox.com/developers --- Desculpe nossas traduções. Nossas traduções foram criadas usando um tradutor online. Nós gostaríamos de suportar todos os idiomas, mas atualmente não…
-
@"Pippo" Thanks for checking in, I was actually just about to update this thread. @"Adam L.26" @"Pippo" The team recently finished work on this fix, and it was just deployed. Please try again and you should find that this functionality works correctly.
-
We don't have a list of these apps available to see which are affected, but if/when you connect the app to your account, the app authorization page will show you a warning if the app would consume that upload API call limit.
-
Thanks for the post! I'll follow up with you on the GitHub issue.
-
Hi Ernie, there have been some bug fixes in recent versions. Can you install the latest version, currently v3.3.4, and let us know if it doesn't help? Thanks in advance!
-
Did you successfully run the steps under "Building from source" first? https://github.com/dropbox/dropbox-sdk-java#building-from-source If so, can you run with --stacktrace to get more error output? Also, for reference, you don't need to build the SDK from source if you don't want to. You can install the package from Maven…
-
Dropbox API v2 now supports listing the contents of a shared link for a folder. This can be accomplished using the same interface as listing a folder in a connected user's account, via the list_folder functionality. To list the contents of a shared link for a folder, you instead provide the shared link URL in the…
-
Dropbox API v2 now supports listing the contents of a shared link for a folder. This can be accomplished using the same interface as listing a folder in a connected user's account, via the list_folder functionality. To list the contents of a shared link for a folder, you instead provide the shared link URL in the…
-
Dropbox API v2 now supports listing the contents of a shared link for a folder. This can be accomplished using the same interface as listing a folder in a connected user's account, via the list_folder functionality. To list the contents of a shared link for a folder, you instead provide the shared link URL in the…
-
Dropbox API v2 now supports listing the contents of a shared link for a folder. This can be accomplished using the same interface as listing a folder in a connected user's account, via the list_folder functionality. To list the contents of a shared link for a folder, you instead provide the shared link URL in the…
-
Dropbox API v2 now supports listing the contents of a shared link for a folder. This can be accomplished using the same interface as listing a folder in a connected user's account, via the list_folder functionality. To list the contents of a shared link for a folder, you instead provide the shared link URL in the…
-
Dropbox API v2 now supports listing the contents of a shared link for a folder. This can be accomplished using the same interface as listing a folder in a connected user's account, via the list_folder functionality. To list the contents of a shared link for a folder, you instead provide the shared link URL in the…
-
Dropbox API v2 now supports listing the contents of a shared link for a folder. This can be accomplished using the same interface as listing a folder in a connected user's account, via the list_folder functionality. To list the contents of a shared link for a folder, you instead provide the shared link URL in the…
-
For reference, Dropbox API v2 now supports listing the contents of a shared link for a folder. This can be accomplished using the same interface as listing a folder in a connected user's account, via the list_folder functionality. To list the contents of a shared link for a folder, you instead provide the shared link URL…
-
The constructor and the UploadAsync method don't raise a SharedLinkAccessDenied. It looks like you're actually calling GetSharedLinkMetadataAsync somewhere. Anyway, SharedLinkAccessDenied means that the "caller is not allowed to access this shared link". That is, it sounds like the user for the access token you're using…
-
Thanks! Unfortunately I don't see anything out of the ordinary here. A few ideas next: - It might be useful to see if there are any errors coming up in the JavaScript console, e.g., using Chrome remote debugging: https://developers.google.com/web/tools/chrome-devtools/remote-debugging/ - Also, can you try it in a…
-
I see, thanks for the information. In that case, you should register the redirect URI without the port. I'll ask the team to clarify this in the documentation.
-
The Dropbox API does offer the ability to list, upload, and download files, among other operations. We don't have any specifics resources, such as an SDK or documentation, for VBA in particular though. The API v2 HTTPS endpoints can be directly used by any platform that can make HTTPS calls however. For example, to upload…
-
The Dropbox API content servers are currently be served properly, and I'm currently able to upload more than 32 20MB-chunks, so it might be an issue with your network connection (or ISP). For example, is there something, such as security software like an anti-virus or firewall, or a malfunctioning proxy, that may be…
-
You can see how the authorization code is exchanged for an access token in the .NET SDK SimpleBlogDemo example here: https://github.com/dropbox/dropbox-sdk-dotnet/blob/master/dropbox-sdk-dotnet/Examples/SimpleBlogDemo/Controllers/HomeController.cs#L187 The 'code' and 'state' are returned by URL parameters, and after the…
-
Dropbox doesn't offer a general app listing like that exactly where users can browse API apps, but I'll pass this along as a feature request. (There is a page that highlights some Business apps though. If you think your app would be a good fit for that listing, please contact our business development team.) You can find…
-
[Cross-linking for reference: https://stackoverflow.com/questions/46686582/dropbox-api-chooser-is-not-displaying-the-mobile-version ] Thanks for the report! We'll look into it.
-
Thanks for the report! I'm not aware of anything that should cause this, so we'll have to investigate. It will be difficult since this doesn't reproduce in a sample app, so to begin, some additional information would be helpful: - what version number of the SDK do you have installed? - what Android version(s) are you…
-
The Dropbox .NET SDK builds a Uri from the redirectUri string you provide, using the Uri Constructor. The Uri Class canonicalizes URIs, including: "Removes default and empty port numbers." The "443" port is default for SSL/TLS, so it's implied by "https://" and shouldn't be necessary. Can you elaborate on the issues you're…
-
For Android, we recommend using the official Dropbox API v2 Java SDK: https://github.com/dropbox/dropbox-sdk-java It sounds like you've already installed that. It doesn't use the same classes/interface as the old version, so you'll need to update your code. There's an example Android app using it here:…