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.

Receiving a HTTP POST in HTTP Handler?

I need to listen and process a HTTP POST string in a HTTP handler. Below is the code for posting …

c# asp.net post http-post httphandler
Retrieving GET and POST data inside Laravel controller

I've been searching the web for how to get POST data inside the controller, so far I have found two …

php laravel http-post http-get
How can I check if request was a POST or GET request in Symfony2 or Symfony3

I just wondered if there is a very easy way (best: a simple $this->container->isGet() I can …

php symfony request http-post http-get
How to access a JSON request body of a POST request in Slim?

I'm just a newbie in the Slim framework. I've written one API using Slim framework. A POST request is coming …

php json post http-post slim
How to interact with Telegram API

I'm really confused as I'm trying to use Telegram's APIs after reading a lot of the documentation on http://core.…

json http-post asp.net-web-api telegram
jQuery Ajax POSTing array to ASP.NET MVC Controller

I'm missing something here. I've got this jQuery JavaScript: $.ajax({ type: "POST", url: "/update-note-order", dataType: "json", data: { orderedIds: orderedIds, unixTimeMs: …

asp.net-mvc jquery http-post
Post a form with multiple partial views

I'm currently trying to post a form composed of two strongly typed views. This question is similar but it doesn't …

asp.net-mvc asp.net-mvc-3 razor http-post partial-views
How to send and receive HTTP POST requests in Python

I need a simple Client-side method that can send a boolean value in a HTTP POST request, and a Server-side …

python http http-post httplib
Apache 301 Redirect and preserving post data

I have implemented SEO URLs using Apache 301 redirects to a 'redirect.cfm' in the root of the website which handles …

apache rewrite http-post http-status-code-301
What is the difference between [AcceptVerbs(HttpVerbs.Post)] and [HttpPost]?

I can decorate an action either with the [AcceptVerbs(HttpVerbs.Post)]/[AcceptVerbs(HttpVerbs.Get)] [AcceptVerbs(HttpVerbs.Post)] public ActionResult Create(…

asp.net-mvc asp.net-mvc-2 http-post http-get