RESTED icon indicating copy to clipboard operation
RESTED copied to clipboard

A REST client for browsers

Results 91 RESTED issues
Sort by recently updated
recently updated
newest added

It would be nice to be able to convert/export a request to something like Curl or Fetch requests with the full headers/body along with any cookie data similar to the...

I have an API that returns an XML response. In the response display, I see the first two lines only: ``` Content-Length: 3938 Content-Type: text/xml Server: Kestrel ``` ``` ```...

We encountered an issue where doing a multipart POST resulted in the server not being able to parse the resulting multipart body. On further examination we figured out that this...

Having variables comes in very handy, but they can add up if you use them a lot. I usually prefix my variables with my collection names to keep them organized...

If you switch the request type from JSON to Custom to URL encoded, it would be nice if the values from the previous option get translated to the new option....

We can name our requests in the interface, however they get lost when Export/Import no matter if you use HAR or Postman. Can you include the request names?

We can use {{var}} in the URL and headers, but we cannot use them in the request body. Please add variables in request bodies (all types).

Hi, me and my friends found some strange bug in RESTED extension. Simple example of code (python) that crashes it below: ``` @app.route('/sum') def sum(): a = request.args.get('a') b =...

I think it would be a great feature to be able to download the response body as .xml or .json, depending on the accept header. Use case: I can download...

Posting "Type JSON" with Key->Value fields cuts values with multiple slashes to single slash. "abc/////abc" becomes "abc/abc". Posting "Custom" with a JSON body doesnt suffer from this behavior. Tested with...