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.

Getting a POST variable

I am using C# with ASP.NET. How do I check if a parameter has been received as a POST …

c# asp.net http-post
Spring MVC - Why not able to use @RequestBody and @RequestParam together

Using HTTP dev client with Post request and Content-Type application/x-www-form-urlencoded 1) Only @RequestBody URL: localhost:8080/SpringMVC/welcome Body: name=abc @…

spring spring-mvc post http-post http-request-parameters
How to POST URL in data of a curl request

I am trying to post two parameters using curl, path and fileName: curl --request POST 'http://localhost/Service' --data "path=…

linux web-services bash curl http-post
$_POST not working. "Notice: Undefined index: username..."

Possible Duplicate: PHP: “Notice: Undefined variable” and “Notice: Undefined index” So, I am currently learning PHP and was reading on …

php http-post undefined-index
Android, Java: HTTP POST Request

I have to do a http post request to a web-service for authenticating the user with username and password. The …

java android http-post
Send FormData with other field in AngularJS

I have a form with two input text and one upload. I have to send it to the server but …

angularjs http http-post multipartform-data form-data
How to send Https Post request in java

I want to login to application from java code. Here is my code... String httpsURL = "https://www.abcd.com/auth/…

java http-post httpurlconnection
What 'sensitive information' could be disclosed when setting JsonRequestBehavior to AllowGet

I've been getting the same old error every time I test a new URL from my browser's address bar when …

asp.net-mvc json security http-post http-get
HttpPost vs HttpGet attributes in MVC: Why use HttpPost?

So we have [HttpPost], which is an optional attribute. I understand this restricts the call so it can only be …

asp.net-mvc attributes http-post http-get
How to receive json data using HTTP POST request in Django 1.6?

I am learning Django 1.6. I want to post some JSON using HTTP POST request and I am using Django for …

python django django-views http-post python-requests