Top "Http-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.

Should I URL-encode POST data?

I'm POSTing data to an external API (using PHP, if it's relevant). Should I URL-encode the POST variables that I …

http post http-post urlencode
Send POST request with JSON data using Volley

I would like to send a new JsonObjectRequest request: I want to receive JSON data (response from server): OK I …

android http-post android-volley android-json
How to set a Header field on POST a form?

How can I set a custom field in POST header on submit a form?

javascript html post http-post httprequest
Uploading file using POST request in Node.js

I have problem uploading file using POST request in Node.js. I have to use request module to accomplish that (…

node.js multipartform-data http-post
Is there a max size for POST parameter content?

I'm troubleshooting a Java app where XML is sent between two systems using HTTP POST and Servlet. I suspect that …

tomcat servlets http-post
How can I use JQuery to post JSON data?

I would like to post Json to a web service on the same server. But I don't know how to …

jquery ajax json post http-post
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
Simple post to Web Api

I'm trying to get a post request to work with the web api. Following is my api controller. public class …

c# asp.net-mvc-4 asp.net-web-api http-post
Node.js - How to send data from html to express

this is form example in html: <!DOCTYPE html> <html> <head> <meta charset="utf-8" /&…

html node.js forms node.js-client http-post
Reading file input from a multipart/form-data POST

I'm POSTing a file to a WCF REST service through a HTML form, with enctype set to multipart/form-data and …

c# wcf http-post forms