📝

YetAnotherHttpHandlerでHTTP versionエラーが出た

2024/06/13に公開

HttpRequestException: request has unsupported HTTP version

これを

var handler = new YetAnotherHttpHandler();

こうする

var handler = new YetAnotherHttpHandler();
handler.Http2Only = true;

HTTP/2のみサポートしているということをサーバに知らせる

Discussion