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.

post
0 votes
0 answers
14 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
46 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
992 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
13 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
44 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
39 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
34 views

Unwanted GET-request mixed after POST (or PUT) request [closed]

I'm making project of RC-car via wifi by ESP32 module as pair client-server over HTTP. I'm building project of RC-car via wifi with ESP32 module using http pair client-server. When client sending ...
All All's user avatar
-2 votes
0 answers
35 views

Unwanted GET-request after POST-request [closed]

I'm building project of RC-car via wifi with ESP32 module using http pair client-server. When client sending first POST-request all is ok, but next requests larger and mixed with some GET-request and ...
All All'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
-3 votes
0 answers
27 views

I can't get the data from post method [closed]

I am trying to do a simple to-do list. It is a exercise where I need to display the items from my to-do list using the server side. I am having problem to get the data. let toDoList = [] function ...
Diego Alegre's user avatar

15 30 50 per page
1
2 3 4 5
2723