Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntelliJ IDEA: make HTTP/2 requests with HTTP client

There is HTTP client in IDEA. It allows to save HTTP requests to web servers in a files and run its later. It helps in development very well.

Simple GET request:

### GET request with a header
GET https://httpbin.org/ip
Accept: application/json

But request can be made to HTTP/1 & HTTPS servers only.

Is it possible to make request to HTTP/2 servers with IDEA HTTP client?

like image 508
Alex Gusev Avatar asked Sep 07 '25 02:09

Alex Gusev


1 Answers

HTTP/2 is not yet supported in IntelliJ IDEA. Here is the feature request for that: https://youtrack.jetbrains.com/issue/IDEA-188869

Please vote and follow for updates.

like image 165
Konstantin Annikov Avatar answered Sep 08 '25 16:09

Konstantin Annikov