Keycloak user federator

2019-08-04 10:47发布

I'm trying to put my new custom Federator in Keycloak so I've compiled my jar filed created using mvn clean install into standalone/configuration/providers following this guide.

I then restarted the Wildfly 8 server but it doesn't seem to register my customer Federation provider.

Is there a reason why this isn't working?

1条回答
再贱就再见
2楼-- · 2019-08-04 11:18

Add a file

META-INF/services/org.keycloak.models.UserFederationProviderFactory

containing the full classname of your custom provider factory. For example be.abc.def.MyCustomProviderFactory

Restart Wildfly and the provider factory (not the provider itself) should be listed in the Users > Federation > Add provider dropdown by its id.

查看更多
登录 后发表回答