不会飞的章鱼

熟能生巧,勤能补拙;念念不忘,必有回响。

VSCode RESTClient 简单用法

用法

总结一套模板

第一种:

1
2
3
4
### 注释

HTTP请求动作 http://ip:port/url?x=1&y=1
Content-Type: 数据类型

例如:

1
2
3
4
5
6
7
8
9
### 下载
GET http://0.0.0.0:9902/download
Content-Type: application/json
{
"key":"1",
"sign":"2",
"id":1,
"ype":1
}

第二种:

1
2
3
4
curl --request HTTP请求动作 \
--url http://ip:port/download?id=1&type=1 \
--header 'key: '
--header 'sign: '

例如:

1
2
3
4
curl --request POST \
--url http://0.0.0.0:9902/download?id=1&type=1 \
--header 'key: '
--header 'sign: '

使用感受

由于平时用VSCode开发,做接口测试的时候还要下载Postman,该插件的出现大大提升了自己的效率。

链接

REST Client
github-vscode-restclient

------ 本文结束------
如果本篇文章对你有帮助,可以给作者加个鸡腿~(*^__^*),感谢鼓励与支持!