From e27838523ab53e19eea8b8fb513799ef4a1a34df Mon Sep 17 00:00:00 2001 From: Iain McGinniss Date: Sun, 10 Jun 2018 14:02:56 -0700 Subject: [PATCH] Minor README fixes Thanks to @celphy for spotting these mistakes. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a1927c46..d0a266b8 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ AuthorizationRequest.Builder authRequestBuilder = new AuthorizationRequest.Builder( serviceConfig, // the authorization service configuration MY_CLIENT_ID, // the client ID, typically pre-registered and static - ResponseTypeValues.CODE // the response_type value: we want a code + ResponseTypeValues.CODE, // the response_type value: we want a code MY_REDIRECT_URI); // the redirect URI to which the auth response is sent ``` @@ -214,7 +214,7 @@ are specified through set methods on the builder: ```java AuthorizationRequest authRequest = authRequestBuilder - .setScope("email profile https://idp.example.com/custom-scope") + .setScope("openid email profile https://idp.example.com/custom-scope") .setLoginHint("jdoe@user.example.com") .build(); ```