Merge ec3c70454f into c54eac28fd
This commit is contained in:
commit
0ccf436695
|
|
@ -160,6 +160,12 @@ grpcurl -H header1:value1 -H header2:value2 -d '{"id": 1234, "tags": ["foo","bar
|
||||||
```
|
```
|
||||||
For more usage guide, check out the help docs via `grpcurl -help`
|
For more usage guide, check out the help docs via `grpcurl -help`
|
||||||
|
|
||||||
|
Sometimes it might be necessary to read the payload from a file. This worked for some users:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
grpcurl -d "$(cat my.json)" grpc.server.com:443 my.custom.server.Service/Method
|
||||||
|
```
|
||||||
|
|
||||||
### Listing Services
|
### Listing Services
|
||||||
To list all services exposed by a server, use the "list" verb. When using `.proto` source
|
To list all services exposed by a server, use the "list" verb. When using `.proto` source
|
||||||
or protoset files instead of server reflection, this lists all services defined in the
|
or protoset files instead of server reflection, this lists all services defined in the
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue