Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
    @Bean
    ClientRegistration clientRegistration() {
        return ClientRegistration.withRegistrationId("someId")
            .clientId("someClientId")
            .clientSecret("someClientSecret")
            .tokenUri("https://mytokenurisomehost.com/token")
            .authorizationGrantType("client_credentials")
            .build();
    }

...