11///////////////////////////////////////////////////////////////////////////////
22
3- Copyright (c) 2020, 2024 Oracle and/or its affiliates.
3+ Copyright (c) 2020, 2025 Oracle and/or its affiliates.
44
55 Licensed under the Apache License, Version 2.0 (the "License");
66 you may not use this file except in compliance with the License.
@@ -165,7 +165,7 @@ A new user is just created, but it needs a password to be able to log in. To ini
165165. If the `Temporary` field is set to `ON`, the user has to update password on next login. Click `ON`
166166to make it `OFF` and prevent it.
167167. Press `Save`.
168- . A pop-up window is popping off. Click on `Set Password` to confirm the new password.
168+ . A pop-up window is popping off. Click on `Save Password` to confirm the new password.
169169
170170To verify that the new user is created correctly:
171171
@@ -262,7 +262,6 @@ security:
262262 client-secret: "changeit" # <2>
263263 identity-uri: "http://localhost:8080/realms/myRealm" # <3>
264264 frontend-uri: "http://localhost:7987" # <4>
265- cookie-use: "false"
266265----
267266<1> `client-id` must be the same as the one configure in keycloak.
268267<2> The client secret generate by Keycloak during `Create a client` section.
@@ -475,7 +474,7 @@ a refresh token.
475474==== Resource Owner Password Credentials Grant (Direct Access Grants)
476475
477476The Direct Access Grants flow is used by REST clients that want to request tokens on behalf of a user.
478- To use Postman to make this request on behalf of `myuser `, select the GET method and enter this URL:
477+ To use Postman to make this request on behalf of `myUser `, select the GET method and enter this URL:
479478`http://localhost:7987/greet/`. Under `Authorization` tab, select authorization type `OAuth 2.0`. Under it, complete the
480479sentence `Add authorization data to` with `Request Headers`, and complete the required fields.
481480
@@ -488,7 +487,7 @@ sentence `Add authorization data to` with `Request Headers`, and complete the r
488487 {"key":"Access Token URL","value":"http://localhost:8080/realms/myRealm/protocol/openid-connect/token"},
489488 {"key":"Client ID","value":"myClientID"},
490489 {"key":"Client Secret","value":"client secret"},
491- {"key":"Username","value":"myuser "},
490+ {"key":"Username","value":"myUser "},
492491 {"key":"Password","value":"password"},
493492 {"key":"Scope","value":"openid"},
494493 {"key":"Client Authentication","value":"Send as Basic Auth Header"}
0 commit comments