Comments
-
Can you share the code that's not working for you? That is, the call where you're adding properties to this file, and the output from that, as well as the list_folder call? Thanks in advance!
-
Unfortunately, I'm afraid I can't offer help with Zapier, as that's made by a third party. I don't know whether or not it's possible to correctly format the HTTPS request for the Dropbox API call using that Zapier client. (One thing I do see though is that you have "https://api.dropboxapi.com/2/file_requests/create/"…
-
@"ChrisGrahamMast" Apologies, it appeared you had duplicate replies, and I tried to remove one, but it seems I somehow managed to remove them both. Anyway, to answer your question: """ THAT IS AMAZING!!!! Woo. I'm super excited about this. So question with this- with our scripts, we'd need to hit the API with a single URL…
-
The Dropbox API now offers the ability to get, list, create, and update file requests: https://www.dropbox.com/developers/documentation/http/documentation#file_requests If you're using an official SDK, there will also be corresponding methods for these endpoints.
-
The Dropbox API now offers the ability to get, list, create, and update file requests. In the Python SDK, this is available via the file_requests_* methods: https://dropbox-sdk-python.readthedocs.io/en/latest/moduledoc.html#dropbox.dropbox.Dropbox.file_requests_create
-
The Dropbox API now offers the ability to get, list, create, and update file requests: https://www.dropbox.com/developers/documentation/http/documentation#file_requests If you're using an official SDK, there will also be corresponding methods for these endpoints.
-
The Dropbox API now offers the ability to get, list, create, and update file requests: https://www.dropbox.com/developers/documentation/http/documentation#file_requests If you're using an official SDK, there will also be corresponding methods for these endpoints.
-
The Dropbox API now offers the ability to get, list, create, and update file requests: https://www.dropbox.com/developers/documentation/http/documentation#file_requests If you're using an official SDK, there will also be corresponding methods for these endpoints. Note that this does not include the ability to…
-
There isn't a limit to the number of access tokens that can be created for an app-user pair, and I'm not aware of any issues arising from creating many. Dropbox won't automatically recycle/invalidate them.
-
Can you confirm you opened the .xcworkspace and not the .xcodeproj? Also, can you share the output you got from `pod install`?
-
Are you uploading the same data again? If the data is exactly the same as what already exists at the destination path, no conflict will occur and it won't create a renamed copy.
-
No, the API doesn't offer a way to disable that button.
-
This is sort of already possible. If you send the user through the app authorization flow again, they may (e.g., as long as your app's redirect URI uses https://) be automatically redirected, without having to click "Allow", if they've already authorized the app. You can find a note about this under "force_reapprove" in…
-
Unfortunately there isn't a way to list more than that using API v2, but I'll pass this along as a request.
-
We did find and resolve the issue causing the 500 late yesterday. Thanks for confirming!
-
This should be fixed now. Please let me know if you're still seeing any issues.
-
It sounds like you're referring to a private endpoint. Third party API apps should use the OAuth app authorization flow: https://www.dropbox.com/developers/documentation/http/documentation#authorization https://www.dropbox.com/developers/reference/oauth-guide That will get your app an access token for the user that you can…
-
You mentioned this is for an Android app, but the DbxWebAuth you're using isn't meant for Android. The API v2 Java SDK does have specific support for Android though. There's an example Android app using it here. - To set that up, your AndroidManifest.xml should be set up as shown here. - You start the flow by calling…
-
I'll ask the team to see if we can get that added and documented on the developers site.
-
You can find the trusted-certs.crt file, used by our Python SDK for example, here: https://github.com/dropbox/dropbox-sdk-python/blob/master/dropbox/trusted-certs.crt Hope this helps!
-
It sounds like the redirect from Dropbox itself is working properly. I'm afraid I can't offer help on the general server/browser set up on the receiving side. E.g., the "CppWebBrowserNavigateError" doesn't appear to be an error from Dropbox. Exactly what you have the receiving server/page do is up to you. Apologies I can't…
-
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.