Datastore API (beta)
71–80 of 88 posts
Re: Datastore API (beta)
#72Earlier quoted context omitted.
Can the Saver Drop-In be used with arbitrary third-party URLs? To me this is what was being described, so if not, then no, it's not describing the Saver Drop-In.
Yes, you can provide arbitrary URLs to the Saver and our (Dropbox's) servers will download them, assuming they are publicly available. (Note: I am an engineer at Dropbox and worked on this product.)
Re: Datastore API (beta)
#73Does anyone know of an OSS alternative to this similar to http://helios.io/ that supports Android/iOS?
Re: Datastore API (beta)
#74Does anyone know of an OSS alternative to this similar to http://helios.io/ that supports Android/iOS?
Couchbase Lite is an embedded JSON database with sync capability. It's Apache licensed and available for iOS and Android: https://github.com/couchbase/couchbase-lite-ios https://github.com/couchbase/couchbase-lite-android
Re: Datastore API (beta)
#75I wonder how Apple will react to @dropbox's new Datastore sync in the long run. Hopefully it won't pull the rug out a la IAP, UDID, OF, ...
Limiting Dropbox functionality on iOS would be met my swift user opposition, something that doesn't guarantee recurring sales.
Re: Datastore API (beta)
#76Such an awesome idea. However, in light of the recent events the first thing to come up in my mind when I see "datastore" and a US corporation is "PRISM integration". I'd like to see proper encryption of Dropbox as the next feature, so that we - innocent users- are not uploading our data to the US government.
Re: Datastore API (beta)
#77I wonder how Apple will react to @dropbox's new Datastore sync in the long run. Hopefully it won't pull the rug out a la IAP, UDID, OF, ...
I would rather they react positively by opening up their iCloud API for web application for third parties. Apple already has such in place as can be seen from their cloud apps at icloud.com.
Re: Datastore API (beta)
#78Parse has an offline cache, that only caches query results and not actual objects. So any local saves/updates are not reflected until you get network access again, unless you manually implement your own cache.
Firebase is better at handling realtime changes, but is lacking in any realtime capabilities at the moment. Also Firebase's mobile authentication SDK still isn't released yet so no way to handle users yet either.
[1]: https://www.dropbox.com/developers/datastore/tutorial/androi...
Re: Datastore API (beta)
#79The biggest problem right now with online file storage services (sorry, I meant "The Cloud") is that while they all do basically the same stuff, there's no standard protocol for accessing them. It's a bit like if every website used a custom protocol instead of HTTP, and web browser vendors had to explicitly collaborate with each web site (or use the website's SDK) in order to be able to retrieve content. Imagine this…
Re: Datastore API (beta)
#80Earlier quoted context omitted.
Couchbase Lite is an embedded JSON database with sync capability. It's Apache licensed and available for iOS and Android: https://github.com/couchbase/couchbase-lite-ios https://github.com/couchbase/couchbase-lite-android
Thanks for the link to this library. It seems like I would still need to implement a lot of features like login, but it's a great start.