超级喜欢postman api monitor这个工具
1. 数据来源,方便测试
通常情况下是测试自有接口
1. curl
使用: https://curl.se/docs/manpage.html
示例: 比如从node端发出一个钉钉机器人消息
curl 'https://oapi.dingtalk.com/robot/send?access_token=' \
-H 'Content-Type: application/json' \
-d "$params"
2. charles
一个代理工具,专业抓包(http,https,ws,wss等)
3. chares export to curl
4. import curl to postman
-
file -> import
-
import -> import RawText
-
重新请求