Questions tagged [vscode-restclient]

3 questions
2
votes
0 answers

vscode-restclient How to process / parse response body

The vscode extension vscode-restclient allows to create http request and handle the response similar to curl or postman. A POST request to /sales/getResult/ returns this response HTTP/1.1 200 OK Date: .... Content-Type: text/plain;…
surfmuggle
  • 5,527
  • 7
  • 48
  • 77
0
votes
1 answer

Cannot send request through RestClient VS Code extension

I've setup a plain web API in .NET 6. App runs smoothly, no errors there, it also has Swagger configuration and I'am able to use it to send requests. Everything works fine. However, I wanted to use RestClient extension (latest version) for VS Code…
mrcn98
  • 1
0
votes
0 answers

VS Code REST Client Extension: How to access nested response headers

I'm trying to access 'nested' headers with the REST Client extension for VS Code. I defined a GET CSRF_Token request that stores the "Set-Cookie" header inside a @token_response variable. However the header looks like…