Something I don't get about Dropbox API: Why can't I just throw URLs at it? If a user wants to save , I have to pull it to my server and push it into Dropbox. Dropbox could just have grabbed it directly and in many cases, won't even have to thanks, to system-wide caching. (This is based on the last time I looked at the API; maybe this is supported now, but I don't think so.)
You're describing the Saver Drop-In: https://www.dropbox.com/developers/dropins/saver
Datastore API (beta)
31–40 of 88 posts
Re: Datastore API (beta)
#32The 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…
Obligatory presentation by Bruce Schneier on the online feudalism: http://www.infoq.com/presentations/cloud-security
Re: Datastore API (beta)
#33The 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…
Anything but fairly trivial apps quickly run into problems with application data (how relevant), file patching, file intents (Google have this),
Google have, IMO, the most advanced solution in the space, so you could argue have the most the lose from standardising. But in fairness, some of their stuff (I'm thinking the real-time collaboration part of the Drive API) is so complex, there's no way you'd ever see it in a common standard.
That said, it'd be really nice to see a common API over the lower stuff.
Re: Datastore API (beta)
#34Something I don't get about Dropbox API: Why can't I just throw URLs at it? If a user wants to save , I have to pull it to my server and push it into Dropbox. Dropbox could just have grabbed it directly and in many cases, won't even have to thanks, to system-wide caching. (This is based on the last time I looked at the API; maybe this is supported now, but I don't think so.)
Re: Datastore API (beta)
#35Re: Datastore API (beta)
#36The 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…
Big players aren't interested in anything that reduces lock-in. Seamless integration is one of the keypoints they have to get you to use their services. Obligatory presentation by Bruce Schneier on the online feudalism: http://www.infoq.com/presentations/cloud-security
Re: Datastore API (beta)
#37The 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…
That's exactly the idea of Remote Storage [0]. The problem is here that the lowest common denominator of functionality isn't actually very much. Anything but fairly trivial apps quickly run into problems with application data (how relevant), file patching, file intents (Google have this), Google have, IMO, the most advanced solution in the space, so you could argue have the most the lose from standardising. But in fa…
I believe filepicker.io have something along these lines as well, but haven't had a chance yet to look into the details of it.
Re: Datastore API (beta)
#38 Every software company attempts to expand until it
offers a cloud-based platform API. Those companies
which cannot do so are replaced by ones which do.
[1]: http://en.wikipedia.org/wiki/Jamie_Zawinski#Zawinski.27s_law...Re: Datastore API (beta)
#39The 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…
Big players aren't interested in anything that reduces lock-in. Seamless integration is one of the keypoints they have to get you to use their services. Obligatory presentation by Bruce Schneier on the online feudalism: http://www.infoq.com/presentations/cloud-security
Re: Datastore API (beta)
#40Earlier quoted context omitted.
That's exactly the idea of Remote Storage [0]. The problem is here that the lowest common denominator of functionality isn't actually very much. Anything but fairly trivial apps quickly run into problems with application data (how relevant), file patching, file intents (Google have this), Google have, IMO, the most advanced solution in the space, so you could argue have the most the lose from standardising. But in fa…
Thanks for the link, this does look very interesting. I believe filepicker.io have something along these lines as well, but haven't had a chance yet to look into the details of it.
RemoteStorage is specification primarily, but it's very much about their JavaScript library that you use directly to communicate to the remote storage.