Skip to main content
Version: 1.2.0

IDP configuration

The client id needs to be the same as the ${idp.client.id} configuration option passed to the Feature Store. Set the redirect uri to your Feature Store web server. The redirect uri needs to be same as the ${idp.redirect.uri} configuration option passed to the Feature Store, and it has to be a context path (e.g., http://localhost/Callback).

If you are running Feature Store in an environment which already takes care of the client authentication and makes access tokens available, you don't have to create the Feature Store client (e.g., when running in Wave behind OIDC). In these cases it is expected to implement a special client method which will fetch the access token from the environment and use it. In this case, you need to implement a method which returns the access token from the environment and passes it to client.set_obtain_access_token_method.


Feedback