Intro
Curl is an excelent to test http responses. Interesting that since it’s open source you can see where the could might fail, for example:
Code
if(!stream->bodystarted) {
failf(data, “HTTP/2 stream %d was closed cleanly, but before getting “” all response header fields, treated as error”,stream->stream_id);*err = CURLE_HTTP2_STREAM;return -1;
}
Therefore in case you see HTTP/2 stream %d was closed cleanly, but before getting you would know that the header is coming broke or the body of the request is absent.