Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [post]

POST is one of the HTTP protocol methods; it is used when the client needs to send data to the server, such as when uploading a file, or submitting a completed form. The word post has several meanings, but this tag is specifically about HTTP POST requests.

0 votes
0 answers
6 views

Issues with Sending Video Files and Form Data from Flutter to Express Server Using Dio/Http Packages, android phone attached debugg mode

I’m having trouble uploading a video file and associated form data from my Flutter app to an Express server. Despite using both the Dio and http packages for HTTP requests, the server logs show that ...
xav's user avatar
  • 1
-1 votes
0 answers
19 views

spring boot postmapping request header too large

I am trying to convert an html string to pdf using flying saucer, the code works fine on my local, but then when I deploy to dev environemtn, im getting request header too large error. I tried adding ...
NewBond007's user avatar
0 votes
0 answers
20 views

C# HttpClient post request goes behind the servers's response

Ladies and gentlemen, I ran into the problem of making an post request to a web api using HttpClient of C#. My code is below: using(HttpClient client = new HttpClient()) { client.BaseAddress = new ...
Dream Land's user avatar
0 votes
0 answers
15 views

what is the problem with this public api ? i can get response back

im trying to crawl FlyToday.ir for foreign hotels price rates . the problem is there is an api in the network tab called by post method and has response in return but when i want to call it (with all ...
Mohamad Alizade's user avatar
-1 votes
0 answers
47 views

How to create optional properties in C#? [closed]

I want to create somewhat of a notebook app, where I can store different notes in a database, I'm using Entity Framework for the context. I have 2 different note types, one with input field and one ...
bence0601's user avatar
-1 votes
0 answers
18 views

Cant use 'axios.post' method

I was scrapping a instagram downloader website using post method but it is showing >>> **cause: Error: write EPROTO 9C3B0000:error:0A000410:SSL routines:ssl3_read_bytes:sslv3 alert handshake ...
user26447760's user avatar
-3 votes
0 answers
1k views

Python: How can I upvote a comment with requests post?

My code to vote on a comment is not working correctly. It returns an http 500 error. I have a Python program that logs in with a user and which is supposed to automatically upvote a comment. The code ...
Vladi's user avatar
  • 1
0 votes
0 answers
19 views

Bad request error at server side when i receive a json object

I am just making a simple axios post request to server. But I cannot understand why am I getting a bad request error. I send the data in json and i expect the data in json. But I am still getting a ...
Samarth Gupta's user avatar
0 votes
0 answers
14 views

I am having trouble to sending POST requests to the server using AT commands

This is the format for sending an AT command to the server. I have successfully run the GET method. But I am unable to post the image (POST method) to my server. 1: "AT", 2: "AT+...
Balaji's user avatar
  • 1
0 votes
1 answer
14 views

when i am sending some data using post request in django and test it in postman it shows no error but in browser it is not responding correctly

from django.shortcuts import render from django.http import HttpResponse def register(request): if request.method == 'POST': name = request.POST['name'] #in this way we are collecting data ...
smaranika hota's user avatar
-2 votes
0 answers
21 views

Calling HTTP Post request from SQL Server [duplicate]

I want to send an HTTP POST request to an endpoint when new data is inserted into particular table in the database. Is it possible to make this call using SQL Server? If so, how? If not, what's the ...
Ravindu D Wijayathunga's user avatar
0 votes
0 answers
46 views

Getting 405 error when making POST request with URLRequest

I'm trying to make a POST request to a newly deployed vercel server. I am having trouble with the request in POSTMan and am getting error 500 when I try to request it from postman. My swift code only ...
Mr. Man's user avatar
  • 84
-1 votes
1 answer
40 views

Postman: Status 404 [closed]

I am looking to send a confirmation email after a customer fills out a form to book an appointment. I was recommended to use 'resend'. I developed a React extension where the form is located, and I am ...
ShailaHussein's user avatar
0 votes
0 answers
23 views

Extracting URL from a LinkedIn user's post using URN or another way

I'm seeking assistance in retrieving the actual URL from a LinkedIn user's post using the URN (Not organization). Is there any way to accomplish this? I'm unsure about how to extract the URL, so any ...
Darrel Foweng Tcho's user avatar
0 votes
0 answers
33 views

Form running GET request instead of POST in Django app

I'm having an issue in Django where when I click save on a form, it sends a GET request instead of a POST. I'm not sure why this is happening, and I've searched about handling forms and POST methods, ...
Sofia's user avatar
  • 1

15 30 50 per page
1
2 3 4 5
2723