grpcurl icon indicating copy to clipboard operation
grpcurl copied to clipboard

Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers

Results 125 grpcurl issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi. I'm trying to get the description of an enum and it gives me an error: "Failed to resolve symbol "com.nms.noc.fm.grpc.AlarmState": Symbol not found: com.nms.noc.fm.grpc.AlarmState" ``` syntax = "proto3"; import...

Hi, I encountered the same issue as described in #97. After some debugging, I tried to call the ame service with BloomRPC GUI and default value was shown immediately. Some...

I check the UNIX return code ($?) after executing grpcurl. It returns 0 for Success, as expected. Non-zero return codes, however, are garbled by what appears to be an extraneous...

If you try to install the tool, you currently get: ``` $ go install github.com/fullstorydev/grpcurl/cmd/grpcurl go: finding github.com/cncf/udpa/go latest build github.com/fullstorydev/grpcurl/cmd/grpcurl: cannot load github.com/cncf/udpa/go/udpa/core/v1: module github.com/cncf/udpa/go@latest (v0.0.0-20201120205902-5459f2c99403) found, but does...

https://goreleaser.com/customization/snapcraft/ > GoReleaser can also generate snap packages. Snaps are a new packaging format, that will let you publish your project directly to the Ubuntu store. From there it will...

Hi ! Here's an extract from the same shell on the same local server ❯ grpcurl -plaintext localhost:50051 list Failed to list services: server does not support the reflection API...

Here is the protobuf message: message MergeResourcesRequest { ResourceType type = 1; repeated google.protobuf.Any resources = 2; } How can we fire this message to ther server with grpcurl? As...

``` github.com/fullstorydev/grpcui/standalone imports github.com/fullstorydev/grpcui imports github.com/fullstorydev/grpcurl imports google.golang.org/grpc/xds/experimental: module google.golang.org/grpc@latest (v1.33.0) found, but does not contain package google.golang.org/grpc/xds/experimental ``` Is this something that this package needs to resolve for users...

Hi, I have a struct in this format ``` type Response struct { Url string `protobuf:"bytes,1,opt,name=url,json=url,proto3" json:"url,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } ``` I set...

Hi, thanks for this project. I have just installed from main, and I setup a minimal gRPC server. When listing services, I have no issues: ``` grpcurl --plaintext localhost:8080 list...