I created Oka application (API Services) for machine to machine Auth. I set client authentication as "Public key / Private key".
Can someone help with Spring boot application that connects to this API via public/private key method and gets access token.
I implemented Client Secret authentication by passing credentials in header.
I am new to public/private key method. Appreciate the help.
I am trying to implement public/private key auth method to get access token from OKTA.
For client credentials, basic auth, I am using this code: HttpHeaders httpHeaders = new HttpHeaders();
Will need to find a way for pub-private key insteasd of basic auth.