Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand All @@ -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();
```
Expand Down