Linked Questions
26 questions linked to/from How to manually send HTTP POST requests from Firefox or Chrome browser
48 votes
2 answers
180k views
How can I send a POST request with a web browser? [duplicate]
How can I send a POST request with a web browser?
22 votes
3 answers
109k views
How to simulate HTTP POST on localhost (*Windows* not Unix)? [duplicate]
What is the simplest way of sending an HTTP POST to a localhost address/port under Windows? E.g. do any browser plugins exist to do this or could a command be sent in the Chrome Developer Tools / ...
269 votes
14 answers
561k views
Fetch: reject promise and catch the error if status is not OK?
Here's what I have going: import 'whatwg-fetch'; function fetchVehicle(id) { return dispatch => { return dispatch({ type: 'FETCH_VEHICLE', payload: fetch(`http:...
22 votes
11 answers
97k views
How do I POST an XML string to a webservice for testing? [closed]
We have developed a RESTful web service which expects an XML string to arrive as "parameter". For QA to test the web service, I am looking for a simple way to POST an XML string to a URL, then display ...
16 votes
2 answers
89k views
How to make http/https POST requests manually? [closed]
I want to test some url's on a small custom server i am working on. i have used Wfetch on windows and its awesome My requirements for these tests are: - should be able to run on linux(ubuntu) - ...
10 votes
3 answers
18k views
ASP.Net Cookies not being saved to the browser
I simply want to save cookies containing security tokens, but they are not persisted in the browser. Here is my AuthController method for saving the cookie (simplified): [AllowAnonymous] [HttpPost(&...
3 votes
5 answers
16k views
How do I send 'fake' POST header to a page?
I am testing a PHP page which gets some data which was POSTed to it. I want to test it and, although I could make a quick PHP page which could send the data I input, I would have thought it would be a ...
1 vote
2 answers
27k views
Is there a quick way send post requests?
i want to test a small php script i wrote, which accepts POST requests.. but is there a way to test it without writing a html form. Im trying to do this using simple rest client chrome extension. But ...
2 votes
2 answers
3k views
Making a simple Web API post request
I'm really struggling with making a basic post request in a url to support a tutorial on web api. I want to do something like this in browser: http://localhost:59445/api/group/post/?newvalue=test and ...
9 votes
1 answer
3k views
POST data via CustomTab or Chrome
I want send POST HTTP request via CustomTab or Chrome then show page finally. I many research but no way for it. is there a way? can send POST request via Volley then show response in browser finally?
2 votes
3 answers
3k views
How to send rest API (Google Vision's API) request with python?
I guess my question is relatively simple and naive, but I'm new to use REST APIs so I would be grateful for any help or hint. I'm trying to send a request with urllib (or another Python's library ...
0 votes
3 answers
9k views
Post data through Url to webapi
Hej, I am unable to post data to the action method through querystring to the action method which is located in the controller class below is my code. I type a url "http://localhost:53459/api/esb/...
1 vote
2 answers
1k views
Inno Setup open link with an HTTP POST request
I have the following code: [Run] Filename: https://example.com/; Flags: shellexec; I would like to open this link in a browser while sending an HTTP POST request. If possible I would like to send ...
0 votes
1 answer
6k views
Send POST requests with Chrome
Is there a way to fake POST requests in Chrome? So far the best Ive seen is the extension called Postman which I think is BRILLIANT except for 1 detail that is critical. It doesnt download the other ...
0 votes
1 answer
4k views
How to use @PostMapping from browser?
I'm developing a simple REST service using Spring. I've a entity and a controller to that. My problem is that I can't use Post function from browser, it's just works from terminal. The Get function ...