gRPC之grpcui界面工具

1、grpcui界面工具

简单的说,就是gRPC中的postman,grpcui官方地址:https://github.com/fullstorydev/grpcui

1.1 安装

go get -u github.com/fullstorydev/grpcui
go install github.com/fullstorydev/grpcui/cmd/[email protected]
[root@zsx demo]# grpcui -version
grpcui dev build <no version set>

1.2 使用

运行web界面,指定grpc的地址:

[root@zsx demo]# grpcui -plaintext localhost:50051
gRPC Web UI available at http://127.0.0.1:55436/
START /usr/bin/firefox http://127.0.0.1:55436/

启动之后的界面:

gRPC之grpcui界面工具_第1张图片

输入参数,发起请求:

gRPC之grpcui界面工具_第2张图片

请求结果:

gRPC之grpcui界面工具_第3张图片

你可能感兴趣的:(gRPC,gRPC)