Top "Post" questions

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.

Using curl to upload POST data with files

I would like to use cURL to not only send data parameters in HTTP POST but to also upload files …

shell file curl post file-upload
Getting only response header from HTTP POST using curl

One can request only the headers using HTTP HEAD, as option -I in curl(1). $ curl -I / Lengthy HTML response bodies …

post curl http-headers
How to get POSTed JSON in Flask?

I'm trying to build a simple API using Flask, in which I now want to read some POSTed JSON. I …

python json post flask
How to fix java.net.SocketException: Broken pipe?

I am using apache commons http client to call url using post method to post the parameters and it is …

java exception post sockets
How to post data to specific URL using WebClient in C#

I need to use "HTTP Post" with WebClient to post some data to a specific URL I have. Now, I …

c# post webclient
Receive JSON POST with PHP

I’m trying to receive a JSON POST on a payment interface website, but I can’t decode it. When …

php json post
Request header field Access-Control-Allow-Headers is not allowed by Access-Control-Allow-Headers

I'm trying to send files to my server with a post request, but when it sends it causes the error: …

javascript angularjs post header cors
POST JSON fails with 415 Unsupported media type, Spring 3 mvc

I am trying to send a POST request to a servlet. Request is sent via jQuery in this way: var …

ajax json spring post http-status-code-415
How to add parameters to HttpURLConnection using POST using NameValuePair

I am trying to do POST with HttpURLConnection(I need to use it this way, can't use HttpPost) and I'd …

android post http-post httpurlconnection basicnamevaluepair
jQuery send string as POST parameters

I want to send a string as an ajax Post parameter. The following code: $.ajax({ type: "POST", url: "http://nakolesah.…

ajax post jquery