Questions tagged [post]

POST is one of the HTTP protocol methods; it is used when the client needs to send data to the server, such as when uploading a file, or submitting a completed form. The word post has several meanings, but this tag is specifically about HTTP POST requests.

POST is one of the HTTP protocol methods; it is used when the client needs to send data to the server as part of the request, such as when uploading a file or submitting a completed form.

In contrast to the GET request method where only a URL and headers are sent to the server, POST requests also include a message body. This allows for arbitrary length data of any type to be sent to the server. A header-field in the POST request usually indicates the message body's Internet media type.

Links

Related

, , , , , ,

40747 questions
7
votes
1 answer

Amazon S3 POST upload (from iPhone)

A bit of background: I am building an iPhone app with a complementary server backend (written in Rails or possibly Sinatra, but probably not relevant for this discussion). Part of the functionality involves uploading pictures from the iPhone to the…
Mirko Froehlich
  • 12,006
  • 4
  • 27
  • 23
7
votes
4 answers

AsyncHttpRequest POST not triggering callbacks (android-async-http by loopj)

I'm trying to send a POST to a server using loopj's async http library. The following code is pretty standard but I can't get it to work. I have debugged quite a bit and have checked the following: The URL is correct. The params are correct and…
Manuel
  • 10,153
  • 5
  • 41
  • 60
7
votes
4 answers

How to add error handling in Jquery Ajax Form submission

This is my code