3

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?

Alex Gusev
  • 1,526
  • 3
  • 16
  • 35

1 Answers1

3

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.

Konstantin Annikov
  • 11,655
  • 4
  • 27
  • 40