What are the alternatives to upload files to ios safari?

I have a mobile web application / website and I would like users to upload a document to our website.

How safari on iPhone cannot download files, what are the alternatives?

I saw http://code.google.com/p/iphone-photo-picker/ , however this is not a photograph.

Is it documented anywhere that the Dropbox API, iCloud API or other API will allow a user to select a file for copying to our servers?

Alternatively, is there another way for our iPhone users to use safari?

+4
source share
2 answers

No, the iPhone does not offer the type of input file in the browser (except for images or videos).

What I do, users must send files (files) by e-mail to the site and upload them programmatically on the server side and assign them to a user account by e-mail address or some password in the letter.

+2
source

The investigation showed that the Dropbox API is for the user, so choosing an option on a web page using OAuth may be an option in the future.

However, the dropbox api documentation at the time of writing says:

Web applications using the Dropbox API are currently not officially supported.

The iCloud API is in beta testing and is available only to members of iOS and Mac developers, so I can’t see its features.


Update: I found this site: http://filepicker.io , which handles downloads from facebook and dropbox.

+1
source

All Articles