We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi. Given an API for deleting objects, it returns 202 Accepted and no content in the body.
202 Accepted
When using unirest for calling it this way:
unirest .post("/deleteByIds") .headers({ "Content-Type": "application/json" }) .send(ids) .end(function (res) { //code handling - never called }); }
The end() function is never called back, however the service has already responded 202 with no body. Tested using unirest-nodejs version 0.4.2.
end()
unirest-nodejs
0.4.2
Could this be related to PR #74 ?
The text was updated successfully, but these errors were encountered:
Could be, will look into it.
Sorry, something went wrong.
No branches or pull requests
Hi. Given an API for deleting objects, it returns
202 Accepted
and no content in the body.When using unirest for calling it this way:
The
end()
function is never called back, however the service has already responded 202 with no body. Tested usingunirest-nodejs
version0.4.2
.Could this be related to PR #74 ?
The text was updated successfully, but these errors were encountered: