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...
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...
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">...
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...
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
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...
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...
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...
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...
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...
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 ( $...
4
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
1 Next >
© 2022 - 2024 — McMap. All rights reserved.