24
votes
13answers
1k 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 thos …
18
votes
13answers
20k 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 acce …
9
votes
6answers
1k 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 encryptio …
9
votes
9answers
7k views
Ruby: How to post a file via HTTP as multipart/form-data?
I want to do an HTTP POST using that looks like an html form posted from a browser, say, post some fields and a file.
Posting fields is straightforward, example right there in the …
9
votes
9answers
10k views
How do I make a POST request with curl
How do I make a POST request with curl command line tool?
7
votes
3answers
2k views
HTTP POST Returns The Error: 417 “Expectation Failed.” (C#) (RESOLVED)
Hi. I'm trying to login to a website using HTTP POST method. I've inspected and altered the POST data while logging in to the website and I came to the conclusion that only the two …
6
votes
5answers
639 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?
6
votes
5answers
2k views
Handling input with the Zend Framework (Post,get,etc)
Hi,
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 $t …
6
votes
6answers
258 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 s …
6
votes
4answers
4k 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 …
5
votes
3answers
100 views
Is it secure to POST Credit Card data from View to Controller?
Need to submit some CC data from the View to the Controller where it will be processed, can I just POST it or is there some common way of securing the data in transit?
5
votes
3answers
230 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/can …
5
votes
2answers
76 views
How do you handle all the ways you could dispatch from a HTTP POST?
Imagine a user has just posted data to your web application and you want to re-display the current page with a message about their success or failure. This gets complicated.
If t …
5
votes
4answers
2k views
Passing $_POST values with cURL
How do you pass $_POST values to a page using cURL?
4
votes
4answers
134 views
How To ? Form Post to Multiple Locations
I have a form which I need to POST to multiple scripts. How can I do this the simplest way?
I know it could be done with Javascript, Curl or Snoopy class, but really which is the …
