Authz client not updated with the way of encoding the basic header
Closes #15086
This commit is contained in:
parent
55c514ad56
commit
712656765e
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ public class Configuration extends AdapterConfig {
|
||||||
throw new RuntimeException("Client secret not provided.");
|
throw new RuntimeException("Client secret not provided.");
|
||||||
}
|
}
|
||||||
|
|
||||||
requestHeaders.put("Authorization", BasicAuthHelper.createHeader(getResource(), secret));
|
requestHeaders.put("Authorization", BasicAuthHelper.RFC6749.createHeader(getResource(), secret));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue