python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
when uploading file by post httpclient the file is left with wrong marks
I am uploading a csv file as follows:
string token = await GetTokenAsync();
string path = "C://...";
_httpClient.DefaultRequestHeaders.Add("Authorization", $"Token {token}&qu...
sergiokml
Votes: 0
Answers: 0
Put method does not update the database but it shows 200 as a response
I am Facing Issue With put Method it shows me 200 Successfully response but it does not updated on database.
database.py:
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
f...
Zeehan Khan
Votes: 0
Answers: 1
Endpoint URL not found in axios PUT endpoint
When pressing a button, my app is suppose to subtract 1 from the current Quantity in the database where the name of the item is "CrossBag"
My PUT endpoint on the client:
confirm = () =&g...
webdesignnoob
Votes: 0
Answers: 1
What's the body request size limit for a PUT request?
I've created a PUT endpoint on a tomcat server using Spring boot. For safety reasons, I don't want the body size to exceed a certain amount, so I was checking whether there is a limit as there is for ...
Akinn
Votes: 0
Answers: 0