支持通过postman
调用grpc接口
- 在postman上设置代理 localhost:7001
- 发送JSON请求
使用参考: https://github.com/jnewmano/grpc-json-proxy
curl -X POST \
http://{{host}}/{{service}}/{{method}} \
-H 'Content-Type: application/json' \
-H 'Postman-Token: 135f874d-d5c2-49c9-94e0-5300e6a424dc' \
-H 'cache-control: no-cache' \
-H 'proxy-grpc: true' \
-d '{
json payload
}'
对grpcurl
进行了一层封装, server端调用了grpcurl