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

Add a support to talk to grpc-web based services.

I created a gRPC service and added grpc healthcheck endpoints as per the [gRPC Health Checking Protocol](https://github.com/grpc/grpc/blob/master/doc/health-checking.md) and I am getting the status as SERVING when using the grpc_health_probe command....

Is it possible to use some parameter to show the time used for getting the response? Thank you

The [status.proto](https://github.com/googleapis/googleapis/blob/master/google/rpc/status.proto) contains a list of error details of type `Any`. ``` message Status { int32 code = 1; string message = 2; repeated google.protobuf.Any details = 3; } ```...

https://github.com/fullstorydev/grpcurl/blob/f1d396c31eda34a8b546fae7e547742b8acf0f6c/Dockerfile#L22 Suggest use alpine as base image instead of scratch.

Hi, can we export proto from grpc server reflection? Thanks

Although we can compse request param step by step,it would be more convenient if grpcurl can generate it automately. ### traditionally step 1 ```bash ➜ ~ grpcurl localhost:20789 describe grpc.health.v1.Health.Check...

I'm trying to get rid of the default host header but failed, the command I used `grpcurl -v -H 'Host: test.abc.com' lb.abc.com:443 list`. Is this a bug or intended?

While working with grpcurl with some HTTP/2 proxies between `grpcurl` and the gRPC server, I noticed that for the following request: ``` $ grpcurl -v -plaintext -d '{"name": "Laurent"}' localhost:8080...