gRPC之grpcui界面工具

发布时间:2024年01月08日

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/grpcui@v1.2.0
[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/

启动之后的界面:

在这里插入图片描述

输入参数,发起请求:

在这里插入图片描述

请求结果:

在这里插入图片描述

文章来源:https://blog.csdn.net/qq_30614345/article/details/134170887
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。