Linked Questions

4 votes
1 answer
1k views

We would like to upload a string with python. I found here some examples and created the following script. import requests url = 'https://URL/fileupload?FileName=file.csv' headers = {'content-type': '...
Patrick's user avatar
  • 2,226
771 votes
30 answers
1.3m views

How do you extract form data (form[method="post"]) and file uploads sent from the HTTP POST method in Node.js? I've read the documentation, googled and found nothing. function (request, response) { ...
Ming-Tang's user avatar
  • 17.7k
1957 votes
9 answers
2.0m views

What does enctype='multipart/form-data' mean in an HTML form and when should we use it?
EBAG's user avatar
  • 22.7k
1708 votes
7 answers
2.1m views

In HTTP there are two ways to POST data: application/x-www-form-urlencoded and multipart/form-data. I understand that most browsers are only able to upload files if multipart/form-data is used. Is ...
max's user avatar
  • 30.1k
691 votes
8 answers
783k views

I'm designing an API to go over HTTP and I am wondering if using the HTTP POST command, but with URL query parameters only and no request body, is a good way to go. Considerations: "Good Web ...
Steven Huwig's user avatar
  • 20.9k
218 votes
7 answers
410k views

What is the specification for maximum data size one can send with HTTP POST method?
IAdapter's user avatar
  • 65.6k
24 votes
5 answers
21k views

I am studying the HTTP methods. I read that GET request can be bookmarked and POST request can not be bookmarked. Can anybody explain this with an example? Thanks
giri's user avatar
  • 27.3k
35 votes
4 answers
21k views

Before I decided to ask this question I have searched quite a long for the answer but I haven't found any satisfactory. (e.g. Examples of the best SOAP/REST/RPC web APIs? And why do you like them? And ...
Adam Bogdan Boczek's user avatar
11 votes
2 answers
46k views

I'm trying to set POST content using Apex. The example below sets the variables using GET PageReference newPage = Page.SOMEPAGE; SOMEPAGE.getParameters().put('id', someID); SOMEPAGE....
Sushant Rao's user avatar
8 votes
2 answers
15k views

I am trying to create a new paste using the PasteBin API with request module like so: var request = require("request"); request({ url : "http://pastebin.com/api/api_post.php", method : "...
An SO User's user avatar
  • 25.1k
2 votes
1 answer
15k views

My URL http://www.domain.com/Products/{Alias}-{ID} and my route routes.MapRoute( name: "ProductDetail", url: "Products/{Alias}-{detailId}", defaults: ...
TienKenji's user avatar
12 votes
3 answers
4k views

I am trying to create a WebHookHandler for Webhooks send from WordPress WooCommerce in ASP.NET C#. I started with creating a ASP.NET C# Azure API App WebApplication Project and adding the relevant ...
Kevin Hendricks's user avatar
3 votes
2 answers
12k views

I use Staticman (staticman.net) for comments on my Gatsby (gatsbyjs.org) site. I've been using a classic HTML form with method="POST" and action="https://api.staticman.net/..." parameter, as this is ...
Robin Métral's user avatar
13 votes
1 answer
9k views

I have a server running over Google App Engine. I am viewing my server's request-log via the console. They are located under Google Cloud Platform --> Stackdriver Logging --> Logs. I would ...
barak manos's user avatar
  • 30.3k
2 votes
2 answers
3k views

I'm trying to make a request to the particle servers in python in a google app engine app. In my terminal, I can complete the request simply and successfully with requests as: res = requests.get('...
bgenchel's user avatar
  • 4,079

15 30 50 per page
1
2 3 4 5
8