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.

POST multipart/form-data with Objective-C

So this HTML code submits the data in the correct format for me. <form action="https://www.example.com/…

objective-c http-post multipartform-data http-post-vars
Django returns 403 error when sending a POST request

when I'm using following Python code to send a POST request to my Django website I'm getting 403: Forbidden error. url = …

python django http-status-code-403 http-post
How can I make a JSON POST request with LWP?

If you try to login at https://orbit.theplanet.com/Login.aspx?url=/Default.aspx (use any username/password combination), …

perl json http-post lwp
How to modify a request in Fiddler?

I'm looking for a simple way to intercept a web request and modify the contents of the request (mainly POSTs) …

post http-post fiddler http-post-vars
How to upload file using Volley library in android?

I already have a sub class of Request that is used for http post to the server. The problem is, …

android file http-post httprequest android-volley
Reading FromUri and FromBody at the same time

I have a new method in web api [HttpPost] public ApiResponse PushMessage( [FromUri] string x, [FromUri] string y, [FromBody] Request …

c# asp.net asp.net-web-api http-post frombodyattribute
I need an alternative option to HttpClient in Android to send data to PHP as it is no longer supported

Currently I'm using HttpClient, HttpPost to send data to my PHP server from an Android app but all those methods …

java android api http-post apache-commons-httpclient
Objective C: How to upload image and text using HTTP POST?

I've successfully created two different methods where each of them can upload either an image or text. But I am …

iphone objective-c ipad file-upload http-post
Posting JSON data using AFNetworking 2.0

I have a web script which accepts JSON string as input through HTTP POST request. I have came across several …

ios json http-post afnetworking-2
Go HTTP Post and use Cookies

I'm trying to use Go to log into a website and store the cookies for later use. Could you give …

http-post go cookiejar