post Questions

3

Solved

I am trying to do a POST request but when I am compiling and executing it with the debugger of Visual Studio Code, I am getting an error of 400 Bad Request. Regardless of that, when I am doing the ...
Dairymaid asked 22/12, 2020 at 13:34

2

Solved

I want to connect a web server to my ios application with swift. So I created a function to create a task with "POST" but when I call it, I get an error message : nw_socket_handle_socket...
Becky asked 28/6, 2020 at 20:4

7

I’m sending a .php file POST data from a java application. The .php file is not accepting the POST data. file_get_contents(‘php://input’) is empty and $_POST is empty. I know the problem isn’t with...
Honeyhoneybee asked 3/8, 2011 at 8:29

5

Solved

I am trying to send an array of the object as a form-data using postman. But it's not working. I follow this link in StackOverflow...But it's worked for mt. When I send my category like this it's ...
Applecart asked 10/2, 2022 at 8:54

4

I have been stuck with this for a bit. I need to test a website and I need to post info in order to test if it appears on the page. What I have so far is this (async () => { const browser = aw...
Annulet asked 10/6, 2020 at 1:40

3

Solved

I was reading this w3c document about post JSON data with html form, and trying to test it. my test form is as follows: <form action="postjson.php" method="POST" enctype="application/json"&gt...
Gorgerin asked 24/6, 2016 at 15:36

9

When using firefox, an ajax post request i have is being reported as aborted in firebug. The ajax post works fine in IE and Chrome. It is not a cross domain request. I tried looking at the issue us...
Solley asked 30/10, 2012 at 22:27

5

I'm trying to create and then send zip file to client. I know how to create it but I've got a problem with send it to client. I tried many ways. I'm sending POST request from Client and as respons...
Duotone asked 21/10, 2015 at 13:34

8

Solved

I'm trying to send a post request in Flutter with DIO package. Here is the request: getSessionId() async { var csrf = await getCsrftoken(); var dio = new Dio(new Options( baseUrl: "http://x...
Calcify asked 27/9, 2018 at 12:54

3

I'm currently using the AWS javascript SDK to create pre-signed POST's. (note that this question is NOT about pre-signed PUTs/URLs, another s3 feature) https://github.com/aws/aws-sdk-js/ When try...
Pinion asked 20/8, 2018 at 17:24

9

Solved

I would like to generate POST request to a server which requires authentication. I tried to use the following method: private synchronized String CreateNewProductPOST (String urlString, String enc...
Elbertina asked 8/1, 2010 at 8:18

3

Solved

I have been struggling with this weird issue for too long now. I have searched through all the so posts of the same issue and none of the solutions have helped. I have an HTML form that is using ...
Uredium asked 29/8, 2017 at 8:46

14

Solved

I'm trying to do a simple Azure Function to learn about it. There will be 3 functions: 1 function to insert a row into a table of a database. This table will contain the current date and a strin...
Loomis asked 19/7, 2017 at 7:33

2

Solved

I am trying to create a REST API for my web service. I want to make the users of the API able to initiate a new request with my service. This involves uploading one or two zip files along with some...
Hartfield asked 12/8, 2013 at 7:23

10

Solved

I am using postman and making an api post request where I am adding body with x-www-form-urlencoded key/values and it works fine in postman. The issue arrises when I try it from c# using RestSharp...
Festschrift asked 21/7, 2017 at 13:26

2

Solved

I'd like to populate my JIRA database programmatically, by POSTing CSV data via the API. I have the URL and authentication working, but I consistently get 400 errors: "Bad Request". My guess is tha...
Vaginismus asked 10/12, 2015 at 0:5

6

I'm trying to send an image to a website using Java HTTP POST requests. I'm using the base code used here Upload files from Java client to a HTTP server: This is my modification: String urlToCon...
Lapin asked 18/6, 2013 at 15:52

7

Solved

I need to invoke a process which doesn't require any input from the user, just a trigger. I plan to use POST /uri without a body to trigger the process. I want to know if this is considered bad fro...
Georgiegeorgina asked 16/11, 2010 at 6:4

4

Solved

I am trying to make HTTP Requests from Delphi using the WinInet functions. So far I have: function request:string; var hNet,hURL,hRequest: HINTERNET; begin hNet := InternetOpen(PChar('User Agen...
Pacifica asked 1/12, 2009 at 1:49

14

I’m trying to receive a JSON POST on a payment interface website, but I can’t decode it. When I print : echo $_POST; I get: Array I get nothing when I try this: if ( $_POST ) { foreach ( $...
Marciamarciano asked 18/9, 2013 at 7:47

4

Seemingly at random, our local repos can no longer fetch from our Bonobo server. It happens with our biggest remote repo (about 4GB) to different people and at different times, when we try to fetch...
Exist asked 12/12, 2014 at 10:57

4

I have this simple test page saved as page1.html. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <script type="text...
Mainstay asked 28/1, 2014 at 10:14

9

Solved

I have read Django - CSRF verification failed and several questions (and answers) related to django and POST method. One of the best-but-not-working-for-me answer is https://stackoverflow.com/a/470...
Cleaner asked 19/5, 2012 at 8:1

11

One can request only the headers using HTTP HEAD, as option -I in curl(1). $ curl -I / Lengthy HTML response bodies are a pain to get in command-line, so I'd like to get only the header as feedbac...
Unprincipled asked 8/4, 2012 at 3:12

2

Solved

I'm moving from Jquery AJAX to Axios since I'm using ReactJS so I think it's cleaner, I am having some troubles posting a simple request to the server, the post method goes through my view but when...
Melodeemelodeon asked 22/3, 2018 at 13:37

© 2022 - 2024 — McMap. All rights reserved.