Skip to content

Commit 20b778b

Browse files
authored
4.x: Fix MP OIDC guide configuration and typo
1 parent 42f8ce6 commit 20b778b

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

docs/src/main/asciidoc/mp/guides/security-oidc.adoc

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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`
166166
to 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
170170
To verify that the new user is created correctly:
171171
@@ -266,7 +266,6 @@ security:
266266
client-secret: "changeit" # <2>
267267
identity-uri: "http://localhost:8080/realms/myRealm" # <3>
268268
frontend-uri: "http://localhost:7987" # <4>
269-
cookie-use: "false"
270269
----
271270
<1> `client-id` must be the same as the one configure in keycloak.
272271
<2> The client secret generate by Keycloak during `Create a client` section.
@@ -479,7 +478,7 @@ a refresh token.
479478
==== Resource Owner Password Credentials Grant (Direct Access Grants)
480479
481480
The Direct Access Grants flow is used by REST clients that want to request tokens on behalf of a user.
482-
To use Postman to make this request on behalf of `myuser`, select the GET method and enter this URL:
481+
To use Postman to make this request on behalf of `myUser`, select the GET method and enter this URL:
483482
`http://localhost:7987/greet/`. Under `Authorization` tab, select authorization type `OAuth 2.0`. Under it, complete the
484483
sentence `Add authorization data to` with `Request Headers`, and complete the required fields.
485484
@@ -492,7 +491,7 @@ sentence `Add authorization data to` with `Request Headers`, and complete the r
492491
{"key":"Access Token URL","value":"http://localhost:8080/realms/myRealm/protocol/openid-connect/token"},
493492
{"key":"Client ID","value":"myClientID"},
494493
{"key":"Client Secret","value":"client secret"},
495-
{"key":"Username","value":"myuser"},
494+
{"key":"Username","value":"myUser"},
496495
{"key":"Password","value":"password"},
497496
{"key":"Scope","value":"openid"},
498497
{"key":"Client Authentication","value":"Send as Basic Auth Header"}

0 commit comments

Comments
 (0)