TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Dropbox Sync API

172 pointsby cpgabout 12 years ago

16 comments

HorizonXPabout 12 years ago
This is awesome stuff. It really adds a lot of end-user benefits when your app is able to sync via Dropbox.<p>While the APIs are only for iOS and Android, on BlackBerry 10, it's technically baked into the OS. If the user has linked their device to Dropbox, the OS automatically syncs the filelist and presents it as a part of the filesystem. This means that the user can open, edit, and save files directly to their Dropbox, without having to worry about connectivity. This also means that every BlackBerry 10 app can access your Dropbox folder, for free.<p>Even still, I have a feeling the Sync API likely offers something more than what I've described, but I haven't had a chance to delve into it. But I'm glad to see Dropbox branching out like this.
评论 #5338672 未加载
qompilerabout 12 years ago
I never understood this, the tutorial shows how to authenticate.<p>mDbxAcctMgr = DbxAccountManager.getInstance(getApplicationContext(), APP_KEY, APP_SECRET);<p>So anyone with some basic Android knowledge will be able to extract my applications key and secret?
评论 #5336951 未加载
评论 #5336953 未加载
评论 #5336944 未加载
评论 #5336927 未加载
评论 #5338789 未加载
评论 #5336930 未加载
评论 #5339045 未加载
mpvossellerabout 12 years ago
If a user doesn't have an account (or hasn't linked their account yet) Dropbox should let developers store data in an anonymous account tied to that device until the uses does. I think developers would pay for that.
评论 #5339576 未加载
sammorrisdesignabout 12 years ago
I kind of hope this ends up replacing iCloud in a lot of apps. iAwriter could really do with using Dropbox by default.
评论 #5337366 未加载
rasmusklabout 12 years ago
Great stuff. Now it just needs to find it's way into the KeePass apps.
评论 #5344622 未加载
rehashedabout 12 years ago
Does this require that my apps users each have a dropbox account?
评论 #5336904 未加载
评论 #5336907 未加载
评论 #5337029 未加载
Aissenabout 12 years ago
Android has had a Backup API for a <i>long</i> time: <a href="http://developer.android.com/training/cloudsync/backupapi.html" rel="nofollow">http://developer.android.com/training/cloudsync/backupapi.ht...</a><p>It's one of the most useful, yet under-used feature of Android. It allows apps to save their settings for when users change devices. Sadly, it doesn't allow sync-ing.
smogzerabout 12 years ago
I could use this for a Qt app. Why not a c or c++ api instead of IOs and android ?
评论 #5337175 未加载
damonabout 12 years ago
I like the iOS API's simplicity. Also the ability to attach observers to file objects. Much easier to use than iCloud (IMHO) and cross platform are huge advantages for me personally.
评论 #5337769 未加载
joeshawabout 12 years ago
Anybody know what API they're using under the hood for this? I have wanted to use the delta REST API (<a href="https://www.dropbox.com/developers/core/api#delta" rel="nofollow">https://www.dropbox.com/developers/core/api#delta</a>) but since I can't limit it to the subdirs my app cares about, I get overwhelmed with a lot of noise and it generally ends up being more data than polling and walking the sub-tree each time.
评论 #5341129 未加载
adlpzabout 12 years ago
It'd be nice to have the API also for platforms like Windows Phone/Windows 8 and a pure javascript implementation.<p>Still, this is quite good.
dmisheabout 12 years ago
Wasn't this announced a month or so ago?
评论 #5337644 未加载
defrndrabout 12 years ago
Is there anyway one can use it for a web app? I only see Android and iOS support.
评论 #5337646 未加载
评论 #5337035 未加载
brown9-2about 12 years ago
For a just-released API/SDK, the documentation and tutorial on this is pretty nice.<p>Especially nice that for the Android SDK documentation, they didn't just publish javadoc-generated html files.
marbanabout 12 years ago
I'd like to see this baked into Mac/Win applications since I'm not using Dropbox but would still like to use sync capabilities without having to install the whole desktop client.
cmelbyeabout 12 years ago
How did apps that used Dropbox handle it before this? Did they have to write a mechanism to sync data themselves?
评论 #5336948 未加载