Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Changed Extension to extension (point 3 from Rajini)

...

sasl.login.callback.handler.class=...OAuthBearerLoginCallbackHandler

sasl.jaas.config=...OAuthBearerLoginModule required \
tokenEndpointUri="https://myidp.example.com/oauth2/default/v1/token" \
clientId="abc123" \
clientSecret="S3cr3t!" \
scope="sales-pipeline" \
Extensionextension_supportFeatureX="true" \
Extensionextension_organizationId="sales-emea" ;

...

Notice that there are two SASL extension configuration values in this example too: Extensionextension_supportFeatureX and Extensionextension_organizationId. These will be ignored during the OAuth token retrieval step, but will be passed to the broker through the existing SASL extension mechanism from KIP-342.

...