I would like the users of my Android app to be able to send zip files to my server using http
. The use case I am imagining looks like this:
The user sends a zip file and a String containing a password using a
HttpClient
andHttpPost
(as described here) to my server.By logging in to
www.example.com/my_app
with existing password, users can download the files that the people have sent to my server under the given password.
I don't understand how to do the second step. What code do I need to write on my website to receive files that the Android users have been sending? I have a shared server under my hosting plan and a simple website.