post Questions

7

Solved

I have a simple form which accepts a username and a password. I have to use sendRedirect() method for the page to redirect to one page if log in is valid and to another if not. I need to use sendRe...
Schlicher asked 26/12, 2012 at 10:17

22

Solved

I need a live test server that accepts my requests for basic information via HTTP GET and also allows me to POST (even if it's really not doing anything). This is entirely for test purposes. A goo...
Unseasoned asked 20/4, 2011 at 4:17

3

Solved

I'm using axios to send request to diro to create an user with endpoint /user/create. However, I keep getting an error like this: Error response: { Error: certificate has expired at TLSSocket.on...
Andromache asked 6/11, 2019 at 6:33

3

Solved

I am setting an invisible reCAPTCHA in my web application and having trouble verifying the user's response. (even though I am passing the correct POST parameters) I am programmatically invoking th...
Curtate asked 20/9, 2018 at 0:54

3

Solved

I have a page, to which I POST information via form method="post". I would like to relaod it with JavaScript, but location.reload(true) and location.reload() makes browsers ask if I want to send th...
Barm asked 1/9, 2014 at 19:49

26

Solved

I've been using Postman Chrome extension to test out my API and would like to send an array of IDs via post. Is there a way to send something list this as a parameter in Postman? { user_ids: ["12...
Creodont asked 6/10, 2012 at 4:18

2

Solved

First off all, I'm very new to python. For a little project I have to implement a websevice, that can recieve a json as content. I did implement this with the flask library and it works fine so far...
Attlee asked 30/3, 2015 at 12:22

10

Is there a way to send a file using POST from a Python script?
Goldoni asked 16/9, 2008 at 1:16

3

Solved

Here's an excerpt from Live HTTP headers, I've replaced several values for anonymity. POST blah/admin.php?module_id=1&action=update&id=129&pageNum=17&&eid=362 HTTP/1.1 Host: b...
Sipper asked 4/11, 2010 at 21:50

4

Solved

I tried to send event to Google Analytics 4 using the postman. And GA4 just response 204 No Content and the event is not recorded in the data stream. I checked the measurement_id and api_secret ha...
Glochidiate asked 9/9, 2021 at 16:3

3

Solved

I have simple configuration file that is used to server custom 503 error page at a time of maintenance. The relevant part is this: server { listen 80 default; root /usr/share/nginx/html; server...
Nationalist asked 23/4, 2013 at 23:35

8

Solved

Please let me explain the setup. I have a Change Password Controller/Action and View. Here are the Action Signatures in my Account Controller: public ActionResult ChangePassword(ChangePasswordMe...
Teplitz asked 17/7, 2014 at 12:45

3

I want to be able to POST a json message to a REST service. I am able to do a GET call by using examples from google-search Declare @Object as Int; Declare @ResponseText as Varchar(8000); Exec sp...
Beffrey asked 9/6, 2014 at 10:39

6

Solved

I am implementing retrofit and moshi to make requests to a server (I am newbie using retrofit). I follow some guides that I found on the internet on how to implement it but when launching the app I...
Suicidal asked 12/1, 2022 at 16:7

5

Solved

I am using jekyll with Github pages for my website. I am trying to make some posts not visible in the home but they can be linked from another post. In the frontmatter I tryed to add a field visibl...
Antiperspirant asked 29/5, 2014 at 13:53

4

Hello I have some input but one of them is disabled ( yes and i need it for my time sheet )but how do I send it autocomplete.php to insert.php I've this error Undefined index: client1 in C:\wamp\ww...
Invertebrate asked 10/4, 2014 at 13:44

4

Solved

I need to make request to SOAP endpoint using axios in my React application. Hence I need to pass xml data in request and receive xml data in response. I have used the axios post with json data bu...
Roydd asked 31/8, 2017 at 6:39

4

I have a content script in my Chrome extension which runs on some HTTPS page. It is trying to send a POST request to an HTTP page (by means of a background script) which is a route for an API that ...
Earthman asked 5/4, 2016 at 3:2

10

Solved

Let's assume a service offers some funcionality that I can use like this: GET /service/function?param1=value1&param2=value2 Is it right to say that I can use it with a POST query? POST /ser...
Polymerization asked 28/10, 2013 at 14:30

8

Solved

Can i send for example a string or another piece of information to another .php file without it being exposed [thus not by GET but by POST conform to what i know] without using a form?
Iorgo asked 23/9, 2010 at 17:21

7

Solved

We are currently triggering Jenkins jobs from a Python script with the help of PycURL. We would like, however, to get rid of the PycURL dependency, but have had little success so far. What makes ou...
Lubber asked 5/12, 2011 at 10:48

23

Solved

there are several issues with the same theme, but I could not solve my problem. Error: Route.post() requires callback functions but got a [object Undefined] at Route.(anonymous function) [as post]...
Erine asked 18/1, 2016 at 11:30

19

Solved

I am successfully using this code to send HTTP requests with some parameters via GET method: void sendRequest(String request) { // i.e.: request = "http://example.com/index.php?param1=a&p...
Daddylonglegs asked 17/11, 2010 at 15:29

12

I am trying to get the whole body from the HttpServletRequest object. The code I am following looks like this: if ( request.getMethod().equals("POST") ) { StringBuffer sb = new StringBuffer(); ...
Messidor asked 11/11, 2011 at 22:16

13

Given this URL: http://www.example.com/page.php?id=10 I want to send the id = 10 to the server's page.php, which accepts it in a POST method. How can I do this with Java? I tried this : URL aaa =...
Filberto asked 24/7, 2010 at 10:28

© 2022 - 2024 — McMap. All rights reserved.