Forrest logo
back to context overview

grpcurl

List of commands for grpcurl:

  • grpcurl:tldr:254ad grpcurl: Send an empty request.
    $ grpcurl ${grpc-server-com:443} ${my-custom-server-Service-Method}
    try on your machine
    explain this command
  • grpcurl:tldr:30f39 grpcurl: List all methods in a particular service.
    $ grpcurl ${grpc-server-com:443} list ${my-custom-server-Service}
    try on your machine
    explain this command
  • grpcurl:tldr:bbd17 grpcurl: Send a request with a header and a body.
    $ grpcurl -H "${Authorization: Bearer $token}" -d ${'{"foo": "bar"}'} ${grpc-server-com:443} ${my-custom-server-Service-Method}
    try on your machine
    explain this command
  • grpcurl:tldr:e060d grpcurl: List all services exposed by a server.
    $ grpcurl ${grpc-server-com:443} list
    try on your machine
    explain this command
back to context overview