Questions tagged [intellij-http-client]

Use this tag if you use the JetBrains http-client plugin for IntelliJ IDEA or JetBrains Rider or other JetBrains tools

The HTTP Client plugin can send a http request and receive the response. Using javascript the response can be tested. The http request(s) and the test(s) reside in a single file. The tool is similar to or or

The plugin is available for IntelliJ IDEA code editor, for the JetBrains Rider code editor and other JetBrains tools.

For more see

2 questions
4
votes
1 answer

Use script to form request body in IntelliJ integrated http client

In pseudo-whish-language this is what I try to achieve in IntelliJ integrated http client: POST {{basepath}}/upload Content-Type: application/json { "content": "{% btoa(await fetch('my-file.dat')) %}" } Normally, one would use the following to…
Daniel Alder
  • 5,031
  • 2
  • 45
  • 55
0
votes
1 answer

Why are the tests of the response not failing in Rider http-client?

A webservice returns this json { "title": "Test how to filter the response", "features": [ { "feature": "AB1", "price": "1.00"}, { "feature": "AB1", "price": "1.23"}, { "feature": "CD2", "price": "2.00"}, { "feature": "EF3",…