POST is one of many request methods supported by the HTTP protocol. The POST request method 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.

learn more… | top users | synonyms

281
votes
11answers
78k views

PUT vs POST in REST

According to the HTTP/1.1 Spec: The POST method is used to request that the origin server accept the entity enclosed in the request as a new subordinate of the resource identified by the ...
137
votes
17answers
204k views

JavaScript post request like a form submit

I'm trying to direct a browser to a different page. If I wanted a GET request, I might say document.location.href = 'http://example.com/q=a'; But the resource I'm trying to access won't respond ...
83
votes
12answers
11k views

When do you use POST and when do you use GET?

From what I can gather, there are three categories - never use GET and use POST, never use POST and use GET, and it doesn't matter which one you use. Am I correct in assuming those three cases? If ...
61
votes
4answers
9k views

ASP.NET MS11-100: how can I change the limit on the maximum number of posted form values?

Microsoft recently (12-29-2011) released an update to address several serious security vulnerabilities in the .NET Framework. One of the fixes introduced by MS11-100 temporarily mitigates a potential ...
50
votes
3answers
1k views

Upload images to Imgur from Mathematica

Here's a challenge to all mathematica tag followers. Let's make it a lot more convenient to insert images into SO post from Mathematica by creating an imgur uploader. How can we create a function ...
45
votes
7answers
10k views

Are https URLs encrypted?

Are all URL's encrypted when using SSL(https) encryption? I would like to know because I want all URL data to be hidden when using SSL(https). If SSL gives you total URL encryption then I don't have ...
36
votes
4answers
22k views

HTTP POST Returns The Error: 417 “Expectation Failed.” (C#)

I'm trying to login to a website using HTTP POST. I'm sure the website only requires two POST fields: username and password; there are no hidden fields. I keep getting the following exception when I ...
35
votes
3answers
42k views

How do you post to an Iframe?

How do you post data to an iframe?
33
votes
9answers
36k views

Ruby: How to post a file via HTTP as multipart/form-data?

I want to do an HTTP POST that looks like an HMTL form posted from a browser. Specifically, post some text fields and a file field. Posting text fields is straightforward, there's an example right ...
30
votes
5answers
50k views

How to post JSON to PHP with curl

I may be way off base, but I've been trying all afternoon to run the curl post command in this recess PHP framework tutorial. What I don't understand is how is PHP supposed to interpret my POST, it ...
27
votes
6answers
1k views

Could a Malicious Hacker Alter a Hidden Post Variable

I know that a POST can be spoofed in terms of originating domain, but what about being able to change the variables of the hidden POST variables in my HTML? I am concerned that someone could alter the ...
23
votes
16answers
19k views

When should I use GET or POST method? What's the difference between them?

I think the title is my question. I would like to know what's the difference when using GET or POST method in php. Which one is more secure? What are dis/advantages of each of them? Thanks EDIT: I ...
22
votes
5answers
68k views

Javascript Post on Form Submit open a new window

http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit shows you how to submit a form that you create via JavaScript via post. Below is my modified code. var form = ...
21
votes
3answers
5k views

application/x-www-form-urlencoded or multipart/form-data?

In HTTP there are two ways to POST data: application/x-www-form-urlencoded and multipart/form-data. I understand that most browsers are only able to upload files if multipart/form-data is used. Is ...
19
votes
5answers
12k views

Android: UnknownHostException

I am using Android SDK 2.2, testing my application with the emulator. I want to send a HTTP Post. When I do I get a UnknownHostException. I have placed the required permissions <uses-permission ...
19
votes
5answers
5k views

Is it possible to cache POST methods in HTTP?

With very simple caching semantics: if the params are the same (and the url is the same, of course), then it's a hit. Is that possible? Recommended?
18
votes
4answers
30k views

How can I send an HTTP POST request to a server from Excel using VBA?

What VBA code is required to peform an HTTP POST from an Excel spreadsheet? Accepted Answer Note: For greater control over the HTTP request you can use "WinHttp.WinHttpRequest.5.1" in place of ...
17
votes
3answers
51k views

Read Post Data submitted to ASP.Net Form

I have a working login form in an asp.net application. Standard stuff with a username and password text box and a button to process the login. Works fine. I have a new requirement to allow the user ...
17
votes
5answers
19k views

Handling input with the Zend Framework (Post,get,etc)

im re-factoring php on zend code and all the code is full of $_GET["this"] and $_POST["that"]. I have always used the more phpish $this->_request->getPost('this') and ...
16
votes
10answers
714 views

Logout: GET or POST?

This question is not about when to use GET or POST in general; it is about which is the recommended one for handling logging out of a web application. I have found plenty of information on the ...
16
votes
1answer
15k views

Secure HTTP Post in Android

I have a pretty basic helper class that I'm using to do all my Http Get/Post stuff. I'm using HttpGet, HttpPost, and HttpClient from the org.apache.http library. All of my stuff works fine over ...
16
votes
3answers
19k views

Passing $_POST values with cURL

How do you pass $_POST values to a page using cURL?
14
votes
5answers
16k views

Post an Array of Objects via JSON to ASP.Net MVC3

I'm looking for a solution to POSTing an array of objects to MVC3 via JSON. Example code I'm working off of: http://weblogs.asp.net/scottgu/archive/2010/07/27/introducing-asp-net-mvc-3-preview-1.aspx ...
14
votes
3answers
2k views

C#: Canonical HTTP POST code?

I've seen so many implementations of sending an http post, and admittedly I don't fully understand the underlying details to know what's required. What is the succinct/correct/canonical code to send ...
14
votes
2answers
9k views

RAW POST using Curl in PHP

How can I do a RAW POST in PHP using curl. Raw post as in without any encoding, and my data is stored in a string. The data should be formatted like this ... usual HTTP header ... Content-Length: ...
13
votes
18answers
6k views

How secure is a HTTP POST?

Is a POST secure enough to send login credentials over? Or is an SSL connection a must?
13
votes
6answers
1k views

RESTful way to create multiple items in one request

I am working on a small client server program to collect orders. I want to do this in a "REST(ful) way". What I want to do is: Collect all orderlines (product and quantity) and send the complete ...
12
votes
3answers
320 views

Why strings in $_POST can not contain a dot “.”?

Basicaly the title say's it all. i had an hidden input on my page where i wanted to set the name to "some.major.uber.setting" for example: <input type="hidden" name="some.major.uber.setting" ...
12
votes
7answers
26k views

jquery serialize and $.post

I'm trying to send a lot of data from a form using the $.post method in jQuery. I've used the serialize() function first to make all the form data into one long string which I will then explode ...
12
votes
4answers
22k views

How to use getJSON, sending data with post method?

I am using above method & it works well with one parameter in url e.g. Students/getstud/1 where controller/action/parameter format is applied. now I have an action in Students controller that ...
12
votes
6answers
13k views

Prevent Back button from showing POST confirmation alert

I have an application that supplies long list of parameters to a web page, so I have to use POST instead of GET. The problem is that when page gets displayed and user clicks the Back button, Firefox ...
11
votes
3answers
6k views

HTTP POST request in node.js

how can I make an HTTP POST request with data in node.js? Thanks
11
votes
2answers
2k views

POST a file string using cURL in PHP?

I was wondering if it is possible to post a file - along with other form data - when the file is just a string? I know that you can post a file that is already on the filesystem by prefixing the ...
11
votes
2answers
21k views

How to send a JSON object over Request with Android?

I want to send the following JSON text {"Email":"aaa@tbbb.com","Password":"123456"} to a web service and read the response. I know to how to read JSON. The problem is that the above jason object must ...
11
votes
3answers
11k views

AJAX POST and Plus Sign ( + ) — How to Encode?

I'm POSTing the contents of a form field via AJAX to a PHP script and using Javascript encode(field_contents). The problem is that any plus signs are being stripped out and replaced by spaces. How ...
11
votes
2answers
3k views

Python standard library to POST multipart/form-data encoded data

I would like to POST multipart/form-data encoded data. I have found an external module that does it: http://atlee.ca/software/poster/index.html however I would rather avoid this dependency. Is there ...
11
votes
3answers
5k views

How do I POST to a web page using Firebug?

How do I POST to a web page using Firebug?
11
votes
4answers
8k views

Does jQuery send cookies in a post?

I want to know if, when I make a $.post(...) with jQuery, does any cookie is sent to the server in the post request? Thanks!
11
votes
3answers
7k views

Security advice for jquery ajax data post?

I'm using jquery ajax to post updates back to my server. I'm concerned about making sure I have put in place appropriate measures so that only my AJAX calls can post data. My stack is PHP on Apache ...
10
votes
5answers
30k views

Android, sending XML via HTTP POST (SOAP)

I would like to invoke a webservice via Android. I need to POST some XML to a URL via HTTP. I found this snipped for sending a POST, but i dont know how to include/add the XML data itself. public ...
10
votes
6answers
3k views

post and get with same method signature

In my controller I have two actions called "Friends". The one that executes depends on whether or not it's a "get" versus a "post". So my code snippets look something like this: // Get: ...
10
votes
10answers
24k views

GET parameters in the URL with CodeIgniter

I know that codeIgniter turns off GET parameters by default. But by having everything done in POST, don't you get annoyed by the re-send data requests if ever you press back after a form ...
9
votes
1answer
83 views

How to post an array of files in ASP.NET MVC 3?

I would like to be able to post multiple files in one form. I would like to pass these files as an array of files. For example I would like to do this. <input type="file" name="files[0]" /> ...
9
votes
3answers
9k views

Post message to facebook wall from android fb sdk always error

I have problem with fb sdk for Android (downloaded from http://github.com/facebook/facebook-android-sdk). Tried to post wall but always get error (permission already set and logged in to fb) here is ...
9
votes
2answers
5k views

Submitting a multidimensional array via POST with php

I have a php form that has a known number of columns (ex. top diameter, bottom diameter, fabric, colour, quantity), but has an unknown number of rows, as users can add rows as they need. I've ...
9
votes
3answers
8k views

What is the size limit of a post request?

Sorry if this is duplicate,I would think it would be but couldn't find anything. I have a flex application that I am posting data back to a php/mysql server via IE. I haven't run into any problems ...
9
votes
10answers
2k views

GET vs POST in AJAX?

Why are there GET and POST requests in AJAX as it does not affect page URL anyway? What difference does it make by passing sensitive data over GET in AJAX as the data is not getting reflected to page ...
9
votes
2answers
2k views

Mechanize submit login form from http to https

I have a web page containing a login form which loads via HTTP, but it submits the data via HTTPS. I'm using python-mechanize to log into this site, but it seems that the data is submitted via HTTP. ...
9
votes
1answer
13k views

POST data in JSON format with JAVASCRIPT

I have some data that I need converted to JSON format and then POSTed with a Javascript function. <body onload="javascript:document.myform.submit()"> <form ...
9
votes
3answers
13k views

Why does my C# client, POSTing to my WCF REST service, return (400) Bad Request?

I'm trying to send a POST request to a simple WCF service I wrote, but I keep getting a 400 Bad Request. I'm trying to send JSON data to the service. Can anyone spot what I'm doing wrong? :-) This is ...

1 2 3 4 5 104