Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
532 views

I'm encountering an issue with a Python client generated from an OpenAPI specification using the openapitools/openapi-generator-cli tool. The problem arises when making a GET request to an endpoint ...
Peder Ward's user avatar
1 vote
2 answers
204 views

The method below returns a 204 if completed successfully, but I'm having trouble checking the status code. It's an IActionResult, in Postman it returns an empty body with a status code of 204. ...
Cjmaret's user avatar
  • 329
0 votes
1 answer
66 views

I am using cloudinary to fetch my images and everything works fine but it sends a 204 preflight res when using cloudinary and when i remove cloudinary logic it works normal. login Controller const ...
SKYSPARKO's user avatar
1 vote
1 answer
643 views

I'm calling a rest service through Karate API with DELETE method. When the service is executed, I am getting HTTP status 204 which is expected. When method DELETE Then status 204 Test is passing, but ...
owl_271's user avatar
  • 13
2 votes
1 answer
6k views

I have some records in the database that may or may not have some information for a certain column, and that's OK. If a consumer of the endpoint runs into one of these records, I'd like to return &...
JustLooking's user avatar
  • 2,486
0 votes
1 answer
2k views

I'm having an issue wherein sending a response with a 204 - NO CONTENT status code via my NodeJS HTTP server causes the response to hang indefinitely, timing out the initiating request. response....
Trevor Sears's user avatar
0 votes
1 answer
1k views

Background: in Rails 5+, a POST route without an associated View now simply returns a 204 status code to the browser (instead of raising a ActionView::MissingTemplate exception as done before Rails 5)....
jpw's user avatar
  • 19.3k
0 votes
1 answer
492 views

I have developed a Web Interface for a db. The db and Web Interface are for my own use in my hobby running on my private intranet. Currently the db has 1800+ records which is going to increase with ...
Mark Hache's user avatar
0 votes
1 answer
851 views

I am working on a react application, where there is a need to send the object parameters inside a body because of confidentiality. So I am making a POST request from the react app client-side to the ...
Deepika's user avatar
  • 105
3 votes
0 answers
3k views

I'm calling a private REST API with axios as http-client. If I'm calling an endpoint which should respond some information about an object I get an response (status code 200, payload containing the ...
db3000's user avatar
  • 479
1 vote
0 answers
180 views

For GET and POST requests for a private server I work with I use in Google Sheets, do something like this, and I get a proper response. I use that response to update data and just as importantly for ...
Cody Dicken's user avatar
0 votes
1 answer
391 views

I'm sending a post request to the same url multiple times in a row. Some of the requests return 200 status code and some return 204 saying no content. the request updates some content in a mongo ...
Mohammed Magdy's user avatar
2 votes
0 answers
2k views

We use Google doc viewer to view pdf files which sometimes responds back with 204 - an untitled document. After a page refresh the content gets loaded. We have tried to add embed tags which doesn’t ...
Bhagyasree Narayanan's user avatar
0 votes
1 answer
803 views

Looked around but couldn't find solution to this. Checking status code via following code: JsonObjectRequest req = new JsonObjectRequest(URL, null, response -> { ...
Anand Kumar's user avatar
0 votes
1 answer
616 views

I'm pretty familiar with rest apis, but today I was asked this: "what if a resource exists but it's content have been blocked for some reason?" example: try to retrieve users/18 but user with id 18 ...
jack_the_beast's user avatar
2 votes
1 answer
8k views

In web-API client made a get request with a parameter, to process something and get data from the file system. The parameter requested through the API a folder path. If API found that path, it is ...
jidh's user avatar
  • 172
9 votes
2 answers
7k views

I am looking at my ajax request in network tab in chrome and I noticed every ajax request I do happens twice. First one is a 204 and then followed up with 200. My ajax call is only being hit once so ...
chobo2's user avatar
  • 86.2k
3 votes
1 answer
2k views

when I try to Respond with on HTTP 204 Status, my Chrome browser is starting an Download that fails. Request: Request URL: https://dummy.page/dummyRequest Request Method: GET Status Code: ...
Jfgnome's user avatar
  • 31
0 votes
1 answer
289 views

I noticed that my Flask app when accessed via Chrome on an iOS device cannot handle an empty response, return 204, correctly. It redirects to a blank page. The intention (as it works on Android and a ...
user1995565's user avatar
0 votes
0 answers
534 views

I have a scrapy spider which was working as expected for a while, but now returning empty response. class BossSpider(scrapy.Spider): name = 'bossaz' allowed_domains = ['boss.az'] ...
Elgin Cahangirov's user avatar
2 votes
1 answer
4k views

I don't know if it is intended or not. But when I use a Reponse Code 204 in my Controller I get "Invalid JSON was returned from the route" in PHPunit. But if I change the Response Code to 201, ...
Philipp Mochine's user avatar
4 votes
1 answer
7k views

How do I configure Spring Boot to return 204 in GET methods (typically findAll methods) when the method does not fetch records? I would not like to do treatment in each method, type the code below: ...
Luciano Borges's user avatar
2 votes
0 answers
2k views

When i try to do an HTTP PUT request to upload a data file .img on image OpenStack like this: curl -i -X PUT -H "X-Auth-Token: $Token" -H "Content-Type: application/octet-stream" -d "@/home/nic/...
Tatta's user avatar
  • 21
0 votes
1 answer
2k views

No template found for ChefsController#create, rendering head :no_content Completed 204 No Content This is an issue in Rails 5 that helps with APIs I've seen this post and several others but I am ...
jendiamond's user avatar
0 votes
1 answer
268 views

I've seen a few conflicting answers across the net and I'm trying to understand this at a fundamental level. Say I have an image hotlinked (yes, with permission) on my site: <img src="...
PercentSharp's user avatar