vscode-restclient
vscode-restclient copied to clipboard
REST Client Extension for Visual Studio Code
AADSTS650053: The application 'Visual Studio Code -REST Client for Graph Token Provider' asked for scope '.defaultclientId:bb5a8654-c9f7-4c2b-840e-4d393d7a7358' that doesn't exist on the resource '00000009-0000-0000-c000-000000000000'. Contact the app vendor.
Hi, is it possible to use one variable inside the json path expression? For xample, I want to change from: ``` @page_id = 301794480610409 @page_access_token = {{user_pages.response.body.$.data[?(@.id=='301794480610409')].access_token}} ``` To: ```...
Related https://github.com/Huachao/vscode-restclient/issues/197 I want to get user ids from this response: ```json { "payload": { "results": [ { "user": { "id": "aaa", "name": "alice", "iconUrl": "https://foo/bar" }, "isFollowed": false, "isFollowing":...
- REST Client Version: 0.25.1 - VSCode Version: 1.91.0 (Insiders) - OS Version: Windows 11 (Adding this report, as the previous one is over a year old with no updates)...
Hi, how can I clear all cookies. I have been deleting the cookie file and restarting the VSC in order to clear everything. Maybe it is not the best way...
Documentation says "REST Client Extension also supports request-level settings". But it doesn't say anything how to specify any of those settings. And it doesn't give any clue where to put...
It would be nice feature to allow writing some tests with big numbers using the format of `1_000_000` for one million like in a couple of languages like Python, Java,...
### Is there an existing issue for this? - [x] I have searched the tracker for existing similar issues and I know that duplicates will be closed ### Describe the...
Swagger supports adding examples along with spec: https://swagger.io/docs/specification/2-0/adding-examples/ We can add support to use swagger file as an input to vscode-restclient. This will save developers from maintaining 2 separate files...
my api body is json but some json field has multi-line, like this ``` { "describe": """1. this is first line 2. this is second line """, "key": "this is...