快捷键
Win: Ctrl+Alt+R
macOS: Cmd+Alt+R
文档:https://marketplace.visualstudio.com/items?itemName=humao.rest-client
请求文件
test.http
GET https://www.baidu.com/ ### GET https://httpbin.org/get ### POST {{host}}/post content-type: application/json { "name": "sample", "time": "Wed, 21 Oct 2015 18:27:50 GMT" }
环境变量
.vscode/settings.json
{ "rest-client.environmentVariables": { "$shared": { "host": "https://httpbin.org" }, "local": { "host": "https://httpbin.org" }, "production": { "host": "https://httpbin.org" } } }