RESTEDClient / RESTED

A REST client for browsers
GNU General Public License v3.0
293 stars 43 forks source link

Allow complete JSON input via textarea #168

Open mbomb007 opened 4 years ago

mbomb007 commented 4 years ago

A similar Chrome extension Talend API Tester - Free Edition allows the user to enter JSON input as actual JSON, not as key/value pairs.

I would like this functionality here, so that I can enter nested arrays and such in the parameters, and paste in the JSON body, like this:

{
  "idList": [
    "id1",
    "id2"
  ],
  "count": 2,
  "obj": {
    "item": "test"
  }
}
P1zz4br0etch3n commented 4 years ago

It's already possible. You just need to change the request body type to "Custom". But don't forget the Content-Type: application/json Header.

Bildschirmfoto vom 2020-01-15 13-04-05