Skip to content
Snippets Groups Projects
Commit df6182d1 authored by Alan Braz's avatar Alan Braz
Browse files

add keycloak client secret

parent 968b57a1
No related branches found
No related tags found
1 merge request!6Trusted ibm
......@@ -47,6 +47,9 @@ public class KeyCloakProvider {
@Value("${ibm.keycloak.client_id}")
private String clientId;
@Value("${ibm.keycloak.client_secret}")
private String clientSecret;
public String getToken(String user, String password) throws IOException {
String endpoint = String.format("https://%s/auth/realms/%s/protocol/openid-connect/token", url, realm);
URL url = new URL(endpoint);
......@@ -57,6 +60,7 @@ public class KeyCloakProvider {
Map<String, String> parameters = new HashMap<>();
parameters.put("grant_type", grantType);
parameters.put("client_id", clientId);
parameters.put("client_secret", clientSecret);
parameters.put("username", user);
parameters.put("password", password);
......
......@@ -44,6 +44,7 @@ ibm.rabbitmq.uri=REPLACE_ME
ibm.keycloak.endpoint_url=keycloak-host.com
ibm.keycloak.realm=OSDU
ibm.keycloak.client_id=osdu-login
ibm.keycloak.client_secret=REPLACE_ME
ibm.keycloak.username=REPLACE_ME
ibm.keycloak.password=REPLACE_ME
ibm.keycloak.useremail=osdu-user@osdu.opengroup.org
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment