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.

Send request to curl with post data sourced from a file

I need to make a POST request via Curl from the command line. Data for this request is located in …

http curl http-post command-line-interface
Access POST values in Symfony2 request object

OK, this is a newbie question, but I can't find the answer anywhere. In a controller in Symfony2, I want …

php symfony http-post
Send file using POST from a Python script

Is there a way to send a file using POST from a Python script?

python post file-upload http-post
Send json post using php

I have this json data: { userID: 'a7664093-502e-4d2b-bf30-25a2b26d6021', itemKind: 0, value: 1, description: 'Saude', …

php json post curl http-post
HTTP Request in Swift with POST method

I'm trying to run a HTTP Request in Swift, to POST 2 parameters to a URL. Example: Link: www.thisismylink.com/…

post swift parameters http-post httprequest
Passing headers with axios POST request

I have written an axios POST request as recommended from the npm package documentation like: var data = { 'key1': 'val1…

json http-headers http-post axios content-type
How to retrieve form values from HTTPPOST, dictionary or?

I have an MVC controller that has this Action Method: [HttpPost] public ActionResult SubmitAction() { // Get Post Params Here ... return something ... } …

asp.net asp.net-mvc-3 http-post
Simple C example of doing an HTTP POST and consuming the response

I would like to create a very simple C application that does an HTTP post. It will take a few …

c http http-post
How to pass POST parameters in a URL?

Basically, I think that I can't, but would be very happy to be proven wrong. I am generating an HTML …

php http http-post http-get
What is the difference between PUT, POST and PATCH?

What is the difference between PUT, POST and PATCH methods in HTTP protocol?

http http-post http-put http-patch