Comments
-
The /2/files/upload endpoint is a "content-upload" style endpoint, so it does expect the file data for the upload in the request body. That is what curl's "--data-binary" does. (I.e., in the example, that's how you specify what data or file curl should use for the request body.) I can't offer support for and don't have a…
-
Your code looks fine at a glance. What version of the SDK do you have installed and how did you install it?
-
1) Unfortunately we can't provide any absolute guarantee of your app's compliance based on a description, so you should be sure to review all the guidelines and terms before developing an app: https://www.dropbox.com/developers/reference/tos https://www.dropbox.com/developers/reference/devguide…
-
We had a service disruption around that time, but it was resolved soon after. If you're still seeing any issues, please let me know.
-
I'm not aware of anything quite like that, but hopefully someone else here is and can chime in.
-
@"gmartins" It looks like you're missing Stone's dependencies. You can install them like this: sudo -H python -m pip install ply six typing Anyway, as overjeer and I mentioned, it's easier to just use a package manager than to build from source. Also, it looks like you resolved the token issue…
-
I'm glad to hear you got this working, but note that disabling SSL certificate verification is not recommended, as that may introduce certain kinds of security vulnerabilities.
-
@"tomthumbsblues" This isn't available to the app developer (and apps can be linked to any number of different Business teams anyway), but Business team admins can see their current usage at: https://www.dropbox.com/team/admin/billing/manage
-
@"Pippo" We made a server-side fix to the existing API.
-
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…