From 23ef1279c18467fa15375bb307a9de513d4f57bd Mon Sep 17 00:00:00 2001 From: Menghan Li Date: Thu, 7 Feb 2019 13:26:12 -0800 Subject: [PATCH] doc: fix broken link in auth doc (#2613) --- Documentation/grpc-auth-support.md | 2 +- examples/features/authentication/{oauth => }/client/main.go | 0 examples/features/authentication/{oauth => }/server/main.go | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename examples/features/authentication/{oauth => }/client/main.go (100%) rename examples/features/authentication/{oauth => }/server/main.go (100%) diff --git a/Documentation/grpc-auth-support.md b/Documentation/grpc-auth-support.md index b02326749..0a6b9f52c 100644 --- a/Documentation/grpc-auth-support.md +++ b/Documentation/grpc-auth-support.md @@ -24,7 +24,7 @@ server.Serve(lis) # OAuth2 For an example of how to configure client and server to use OAuth2 tokens, see -[here](https://github.com/grpc/grpc-go/blob/master/examples/oauth/). +[here](https://github.com/grpc/grpc-go/tree/master/examples/features/authentication). ## Validating a token on the server diff --git a/examples/features/authentication/oauth/client/main.go b/examples/features/authentication/client/main.go similarity index 100% rename from examples/features/authentication/oauth/client/main.go rename to examples/features/authentication/client/main.go diff --git a/examples/features/authentication/oauth/server/main.go b/examples/features/authentication/server/main.go similarity index 100% rename from examples/features/authentication/oauth/server/main.go rename to examples/features/authentication/server/main.go