2,212 questions
0
votes
1
answer
49
views
Is it Possible to Make an ADF Web Activity PUT Request Without a Body?
I have an API that I am accessing using Bruno and its a PUT request that does not require a body. When I try this as a Web activity in ADF I get the error a 'valid body is required for PUT and POST ...
2
votes
0
answers
43
views
Why am I getting a 404 status code from my PUT method, when the GET method returns 200?
The method saveToDatabase() that I use to store the list of questions to my db.json on Github, returns 404 status code from the PUT method. Whereas, the same method returns a 200 status code when ...
0
votes
0
answers
45
views
Syncing SQL database with WooCommerce via REST API fails to update product prices correctly
Problem: my Node.js sync server logs show successful product updates in WooCommerce (HTTP 200 responses), but when checking the WooCommerce admin panel:
Some price/name changes aren't actually saved
...
-2
votes
0
answers
12
views
NextJS migrate from App Router 14 to 15. Property 'params' is missing in type 'params' [closed]
tengo este error al momento de compilar mi proyecto en produccion en Next.js, al ejecutar npm run build:
[email protected] build
next build
▲ Next.js 15.1.6
Environments: .env
Creating an optimized ...
0
votes
1
answer
25
views
AWS - put data on S3 results in TimeOutError
I am creating a dataset on AWS S3, for their Opendata program.
I am fetching audio files, which are already stored on S3.
I then segment them into smaller audio chunks, and putting those on S3 again.
...
0
votes
0
answers
38
views
Python(flask) PUT TypeError: Todo.put() got multiple values for argument 'todo_id'
I am creating a todo list app using React and Python. But the update todo function is not working properly and gave me TypeError: Todo.put() got multiple values for argument 'todo_id'.
@blp.arguments(...
1
vote
1
answer
114
views
Laravel/Inertia js/React js PUT Request Form Data Not Fully Received on Update When Including Image Upload
I'm facing a strange issue in my Laravel Inertia.js project. I can successfully create new 'Ville' resources, including image uploads. Updates also work fine if I don't upload a new image. However, ...
0
votes
0
answers
19
views
Upload File using PUT request to a Signed URL
I am trying to send a file to a signed URL using PUT request but the file is not uploading.
Below is my code:
const uploadToBucket = async (uploadUrl, fileUri, contentType, fileSize) => {
try {
...
0
votes
0
answers
36
views
Error: 400 - {"message":"Invalid json data"} While using Post method in Unity
I am trying to send a PUT request using UnityWebRequest to update game data on a server. However, I keep getting the error:
css
Copy
Edit
Error: 400 - {"message":"Invalid json data"...
0
votes
0
answers
16
views
Error while testing PUT (with EntityState.Modified) request to a database using InMemory, xUnit in .NET unit tests
I do not have much experience with testing in .NET. I ran into an issue that I do not understand how to solve. Please advise where I can read about it.
I have a backend code that works with a simple ...
0
votes
0
answers
35
views
JPA PUT request not triggering 500 code instead of 409
I'm working on a simple DB and I need to have an error 409 show up in Postman if when updating the patient record the email has already been used by another patient in the DB. I'm getting the 409 just ...
0
votes
0
answers
30
views
Why do I get an error whenever I try to withdraw money from someone's account?
The backend method in Java
@PutMapping("/withdraw/{accountId}/{amountToWithdraw}")
public ResponseEntity<Account> withdrawMoney(@PathVariable int accountId, @PathVariable double ...
1
vote
0
answers
48
views
Error method PUT HTTPS IIS 10 Angular 16 Windows Server 2019
I have a Web Site (Angular 16). That's deploy in IIS 10 (HTTPS port 443 with a Certificate)
I have ARR enabled, and on my web site tengo a rewrite ruler.
My back-end is in Node.js. It's running in the ...
0
votes
1
answer
435
views
Laravel not processing FormData in a PUT request
I'm facing an issue while trying to send a PUT request with FormData in Laravel using Inertia. I need to update a user, but the PUT request seems to be ignored, and Laravel is not processing the ...
1
vote
1
answer
47
views
how to pass data to redux toolkit mutation
In component,
const [ updateproductapi ] = useUpdateProductMutation()
formdata.append("product_name", product.product_name);
formdata.append("product_price", product.product_price);...