mirror of
https://github.com/Luzifer/nginx-sso.git
synced 2024-12-22 13:51:18 +00:00
22 lines
475 B
Markdown
22 lines
475 B
Markdown
|
# Reflection
|
||
|
|
||
|
This example shows how reflection can be registered on a gRPC server.
|
||
|
|
||
|
See
|
||
|
https://github.com/grpc/grpc-go/blob/master/Documentation/server-reflection-tutorial.md
|
||
|
for a tutorial.
|
||
|
|
||
|
|
||
|
# Try it
|
||
|
|
||
|
```go
|
||
|
go run server/main.go
|
||
|
```
|
||
|
|
||
|
There are multiple existing reflection clients.
|
||
|
|
||
|
To use `gRPC CLI`, follow
|
||
|
https://github.com/grpc/grpc-go/blob/master/Documentation/server-reflection-tutorial.md#grpc-cli.
|
||
|
|
||
|
To use `grpcurl`, see https://github.com/fullstorydev/grpcurl.
|