91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

grpcurl如何通過命令行訪問gRPC服務

發布時間:2022-06-16 10:34:21 來源:億速云 閱讀:357 作者:iii 欄目:開發技術

本篇內容主要講解“grpcurl如何通過命令行訪問gRPC服務”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“grpcurl如何通過命令行訪問gRPC服務”吧!

    gRPC Server

    首先來寫一個簡單的 gRPC Server:

    helloworld.proto:

    syntax = "proto3";
    package proto;
    // The greeting service definition.
    service Greeter {
        // Sends a greeting
        rpc SayHello (HelloRequest) returns (HelloReply) {}
    }
    // The request message containing the user's name.
    message HelloRequest {
        string name = 1;
    }
    // The response message containing the greetings
    message HelloReply {
        string message = 1;
    }

    main.go

    package main
    import (
        "context"
        "fmt"
        "grpc-hello/proto"
        "log"
        "net"
        "google.golang.org/grpc"
        "google.golang.org/grpc/reflection"
    )
    func main() {
        lis, err := net.Listen("tcp", ":50051")
        if err != nil {
            log.Fatalf("failed to listen: %v", err)
        }
        server := grpc.NewServer()
        // 注冊 grpcurl 所需的 reflection 服務
        reflection.Register(server)
        // 注冊業務服務
        proto.RegisterGreeterServer(server, &greeter{})
        fmt.Println("grpc server start ...")
        if err := server.Serve(lis); err != nil {
            log.Fatalf("failed to serve: %v", err)
        }
    }
    type greeter struct {
    }
    func (*greeter) SayHello(ctx context.Context, req *proto.HelloRequest) (*proto.HelloReply, error) {
        fmt.Println(req)
        reply := &proto.HelloReply{Message: "hello"}
        return reply, nil
    }

    運行服務:

    go run main.go
    server start ...

    grpcurl 安裝

    這里我介紹三種方式:

    Mac

    brew install grpcurl

    Docker

    # Download image
    docker pull fullstorydev/grpcurl:latest
    # Run the tool
    docker run fullstorydev/grpcurl api.grpc.me:443 list

    go tool

    如果有 Go 環境的話,可以通過 go tool 來安裝:

    go install github.com/fullstorydev/grpcurl/cmd/grpcurl@latest

    grpcurl 使用

    查看服務列表:

    grpcurl -plaintext 127.0.0.1:50051 list

    輸出:

    grpc.reflection.v1alpha.ServerReflection
    proto.Greeter

    查看某個服務的方法列表:

    grpcurl -plaintext 127.0.0.1:50051 list proto.Greeter

    輸出:

    proto.Greeter.SayHello

    查看方法定義:

    grpcurl -plaintext 127.0.0.1:50051 describe proto.Greeter.SayHello

    輸出:

    proto.Greeter.SayHello is a method:
    rpc SayHello ( .proto.HelloRequest ) returns ( .proto.HelloReply );

    查看請求參數:

    grpcurl -plaintext 127.0.0.1:50051 describe proto.HelloRequest

    輸出:

    proto.HelloRequest is a message:
    message HelloRequest {
      string name = 1;
    }

    請求服務:

    grpcurl -d '{"name": "zhangsan"}' -plaintext 127.0.0.1:50051 proto.Greeter.SayHello

    輸出:

    {
      "message": "hello"
    }

    可能遇到的錯誤

    可能會遇到兩個報錯:

    1、gRPC Server 未啟用 TLS:

    報錯信息:

    Failed to dial target host "127.0.0.1:50051": tls: first record does not look like a TLS handshake

    解決:

    請求時增加參數:-plaintext,參考上面的命令。

    2、參數格式錯誤:

    報錯信息:

    Error invoking method "greet.Greeter/SayHello": error getting request data: invalid character 'n' looking for beginning of object key string

    解決:

    -d 后面參數為 json 格式,并且需要使用 '' 包裹起來。

    到此,相信大家對“grpcurl如何通過命令行訪問gRPC服務”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    谷城县| 藁城市| 九台市| 赤城县| 陆河县| 涟源市| 北宁市| 甘泉县| 南溪县| 阿尔山市| 攀枝花市| 固镇县| 西宁市| 九江市| 黄平县| 寻甸| 卢湾区| 仁化县| 青河县| 嘉定区| 铜山县| 枞阳县| 公主岭市| 京山县| 桂阳县| 乐至县| 华蓥市| 秭归县| 磐安县| 遂昌县| 呼伦贝尔市| 新化县| 闻喜县| 凤庆县| 杨浦区| 府谷县| 卢湾区| 万州区| 包头市| 平远县| 三穗县|