Comments
-
No update on this.
-
Unfortunately I don't know if/when this may be added to API v2.
-
Hi Julian, I imagine that's a typo and you meant to say that "SwiftyDropbox is only capable of accessing API v2". Anyway, it's not possible to use SwiftyDropbox to access API v1. If you wanted to though, you could technically use API v1, either via the HTTP endpoints, or the iOS Core SDK. Note that API v1 is deprecated…
-
To clarify, this is currently available in API v1, but not API v2.
-
This isn't currently available in API v2, but I'll be sure to pass this along as a feature request.
-
Thanks for the feedback! I'll send it along.
-
Yes, email address is available via /shared_folders in the Core API: https://www.dropbox.com/developers-v1/core/docs#shared-folders
-
Hi Antriksh, the display_token page was designed for the "token" flow, not the "code" flow. You can find information on the two different flows in the /authorize documentation here: https://www.dropbox.com/developers/documentation/http/documentation#oauth2-authorize If you want to use the code flow and have the code…
-
This is an issue inherent to using OAuth 1 with a client-side app. If you're using OAuth 1, this is unavoidable. You can try to obfuscate the keys to make it difficult, but you can't make it impossible to extract them. If they are extracted, this doesn't itself enable access to user data though, it would just let someone…
-
The DbxAccountInfo object in the Java SDK doesn't implement all of the fields returned by the raw /account/info endpoint. What specifically is missing that you need? I'll be happy to send it along as a feature request.
-
Thanks for the information, Alexander! I'm adding this to the feature request.
-
No news on this.
-
Sorry, no updates on this.
-
Thanks for the information! That's very helpful.
-
We don't have any plans or a beta list for comments functionality on the API right now, but I'm sending this along as a request. For some additional context to help us prioritize though, what did you have in mind for it? Thanks!
-
Can you try calling it like this? DropboxOAuth2Helper.GetAuthorizeUri(OAuthResponseType.Token, myAppId, (String)null) I believe that should remove the ambiguity.
-
No, unfortunately shared links don't have a supported way to get the preview data, like there is for the raw data. (If you're developing an app though it's available via the Core API: https://www.dropbox.com/developers/core/docs#previews )
-
The browser will only be able display the file embedded if it knows how to render it. Browsers generally don't have support for Excel files, so in that case its only option is to download it.
-
The link you're trying to use ( https://www.dropbox.com/work/_Down%20To%20The%20Woods/Products/_Suppliers?preview=Purchase+Order+(PO)+Dashboard.xlsm?raw=1 ) is a private link. You'll need to use a share link: https://help.dropbox.com/files-folders/view-only-access
-
Those links by default are on www.dropbox.com, which doesn't allow iframing, so that won't work by default. If you modified it to use raw=1 though, it should probably work. Can you share your code for that?
-
What have you tried specifically, Ben? Can you post some sample code or maybe a sample page?
-
What you're describing does sound possible using the Core API, but it would involve some custom development work.
-
Thanks for the feedback! We still don't have a pre-built sort of widget like this, but I've sent this along as a feature request.
-
That post involves using the Dropbox Core API: https://www.dropbox.com/developers/core That certainly is powerful enough to build Dropbox functionality into a web site, but it's much more free form and would require more work to build exactly what you want, as opposed to a sort of embeddable widget like you requested.
-
The Dropbox Web site itself (www.dropbox.com) can't be iframed and we don't currently have an embeddable widget for showing the contents of a folder, but if you have links to any specific assets (e.g., shared links for images) you can iframe those or hotlink them normally using standard iframe or anchor HTML tags. (You may…
-
If you want to programmatically interact with Dropbox using PHP, I recommend using the official PHP Core SDK: https://www.dropbox.com/developers/core/sdks/php https://www.dropbox.com/developers/core/start/php http://dropbox.github.io/dropbox-sdk-php/api-docs/v1.1.x/ How you zip up the file isn't related to the Dropbox API,…
-
If you're using chunked a.k.a. resumable uploading, you have 24 hours to complete any upload session. So, as long as your app has access to the data it wants to continue uploading, and the upload ID (a.k.a. UploadCursor in the JavaScript SDK) for the uploading session it started, then yes, it can resume uploading from the…
-
So, if I understand correctly, the issue is that you're calling loadFile but you're not seeing anything downloaded to your local folder? Have you implemented the callbacks so you can see what's happening with those downloads? - (void)restClient:(DBRestClient*)client loadedFile:(NSString*)destPath-…
-
Hi Adica, unfortunately no, I'm not aware of any plans to introduce a programmatic interface for submitting files to a file request.
-
Hi Fred, unfortunately no, this isn't in the API.