Not able to get Authorization code and Client Secret from TokenRequest
I am trying to create a oauth provider and oauth client using nimbus.oauth2.sdk 10.13. This is the client side code. This sends a token request using the authorization code previously received. // Initialize client information ClientID clientId = new ClientID(“12345”); Secret secret = new Secret(“abcdef”); URI redirectURL = URI.create(“http://localhost:8080/tokenResponse”); AuthorizationCode authCode = new AuthorizationCode(“aaa”); // … Read more