Are you into being on the go and using email as a way to keep valuable data safe (โin the etherโ), or used as a backup, until you get to your destination? Today, we finally get back to continue our discussion regarding alternatives to email with the excellent Dropbox functionality, and today delve into its API, โdipping our toesโ so to speak โฆ because โthere is moreโ (no, not โsteak knivesโ). Letโs just reiterate, below, a discussion (by Wikipedia) of Dropbox.
Dropbox is a file hosting service operated by Dropbox, Inc., that offers cloud storage, file synchronization, and client software. Dropbox allows users to create a special folder on each of their computers, which Dropbox then synchronizes so that it appears to be the same folder (with the same contents) regardless of which computer is used to view it. Files placed in this folder also are accessible through a website and mobile phone applications.
Dropbox, Inc., was founded in 2007 by Drew Houston and Arash Ferdowsi, as a Y Combinator startup company.[4]
Dropbox provides client software for Microsoft Windows, Mac OS X, Linux, Android, iOS, BlackBerry OS and web browsers, as well as unofficial ports to Symbian, Windows Phone, and MeeGo.
Well, Dropbox has the added dimension of maintaining an API including โฆ
- a chooser โฆ like โbrowserโ or โdownloadโ (to you, the client)
- a saver โฆ like โsave asโ or โuploadโ (to Dropbox)
- a business API โcore functionalityโ (for business usage purposes)
Building on DropBox Primer Tutorial as shown below, today we explore the โchooserโ (in the mode of โJavaScriptโ (but please note you can also get support for โiOSโ and/or โAndroidโ mobile functionality)), and itโs great โฆ there are no other words for it โฆ the way you can segment functionality by file extension is โjust the beeโs kneesโ in my humble opinion. Maybe youโll agree, and you can see it in action by viewing todayโs tutorial and/or you can view our HTML/JavaScript source code you could call dropboxChooserhtml (with which, in the code, you can see that we disallow *.jpg (image) (but we show that they can work in the tutorial) but allow *.doc* (Word documents) and *.pdf (Portable Document Format), via the one line of code going โฆ
extensions: ['.pdf', '.doc', '.docx'], //, '.jpg'],
โฆ cute, huh?) and/or you could try a liverun (for *.doc* and *.pdf files).
Hope to see you again soon.
Previous relevant DropBox Primer Tutorial is shown below.
Are you into being on the go and using email as a way to keep valuable data safe (โin the etherโ), or used as a backup, until you get to your destination? Or are you already using DropBoxes as an alternative to this โฆ spoilsport! Never mind โฆ โDropBox is an alternative to email.โ So there, nyaaaaaargh. Guess a lot of people are using iCloud or Google Drive or other services for this same computer storage purpose at a bigger level. Below is a definition of DropBox by Wikipedia.
Dropbox is a file hosting service operated by Dropbox, Inc., that offers cloud storage, file synchronization, and client software. Dropbox allows users to create a special folder on each of their computers, which Dropbox then synchronizes so that it appears to be the same folder (with the same contents) regardless of which computer is used to view it. Files placed in this folder also are accessible through a website and mobile phone applications.
Dropbox, Inc., was founded in 2007 by Drew Houston and Arash Ferdowsi, as a Y Combinator startup company.[4]
Dropbox provides client software for Microsoft Windows, Mac OS X, Linux, Android, iOS, BlackBerry OS and web browsers, as well as unofficial ports to Symbian, Windows Phone, and MeeGo.
Enjoy the tutorial that shows some DropBox functionality here.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.