Skip to content

Commit 7b00751

Browse files
barchettatvallin
andauthored
4.1.7: Fix MP OIDC guide configuration (#9755)
* 4.x: Fix MP OIDC guide configuration and typo --------- Co-authored-by: Thibault Vallin <[email protected]>
1 parent af893e4 commit 7b00751

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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`
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
@@ -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
477476
The 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
480479
sentence `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

Comments
 (0)