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.

How to post raw body data with curl?

Before you post this as a duplicate; I've tried many of the suggestions I found around SO. So far I've …

linux curl post request http-post
send Content-Type: application/json post with node.js

How can we make a HTTP request like this in NodeJS? Example or module appreciated. curl https://www.googleapis.com/…

node.js post curl
jQuery .ajax() POST Request throws 405 (Method Not Allowed) on RESTful WCF

I am sending a post request to a RESTFUL WCF service application. I am able to successfully send a POST …

jquery web-services rest post wcf-rest
Send Post Request with params using Retrofit

I'm trying unsuccessfully to consume an API on Android using Retrofit library but while using POSTMAN I can see the …

android post retrofit
Javascript window.open pass values using POST

I have a javascript function that uses window.open to call another page and returning the result. Here is the …

javascript post get window
How can I send the "&" (ampersand) character via AJAX?

I want to send a few variables and a string with the POST method from JavaScript. I get the string …

javascript ajax string post xmlhttprequest
PHP: check if any posted vars are empty - form: all fields required

Is there a simpler function to something like this: if (isset($_POST['Submit'])) { if ($_POST['login'] == "" || $_POST['password'] == "" || $_POST['confirm'] == "" || $_…

php forms post field
Special characters like @ and & in cURL POST data

How do I include special characters like @ and & in the cURL POST data? I'm trying to pass a name …

post curl
Create a simple HTTP server with Java?

What's the easiest way to create a simple HTTP server with Java? Are there any libraries in commons to facilitate …

java http post get
Can HTTP POST be limitless?

I heard that HTTP POST has no specification limit in data size it can be sent by. Is that true …

http forms post limit