Hello
I have :
- a Ubuntu VM with Owncloud 10.9.1
- a Ubuntu VM with keycloak 17.0.0
I have install the openId App in owncloud.
And I am trying to connect openId connect to my keycloak that works fine with grafana
When trying to select the openId connect button I arrive in a owncloud page error that says :
Error in OpenIdConnect:The provider issuer could not be fetched. Make sure your provider has a well known configuration available.
in the owncloud config.php I have the folowing conf I have the following conf :
'provider-params' => [ 'authorization_endpoint' => 'https://auth.myDomain.net/realms/myRealms/protocol/openid-connect/auth', 'token_endpoint' => 'https://auth.myDomain.net/realms/myRealms/protocol/openid-connect/token', 'token_endpoint_auth_methods_supported' => ["private_key_jwt","client_secret_basic","client_secret_post","tls_client_auth","client_secret_jwt"], 'token_introspection_endpoint' => 'https://auth.myDomain.net/realms/myRealms/protocol/openid-connect/token/introspect', 'userinfo_endpoint' => 'https://auth.myDomain.net/realms/myRealms/protocol/openid-connect/userinfo', 'registration_endpoint' => 'https://auth.myDomain.net/realms/myRealms/clients-registrations/openid-connect', 'end_session_endpoint' => 'https://auth.myDomain.net/realms/myRealms/protocol/openid-connect/logout', 'jwks_uri' => 'https://auth.myDomain.net/realms/myRealms/protocol/openid-connect/certs' ]
For information on the keycloak side I put a client conf almost as the grafana one :
Root URL https://owncloud.myDomain.net
âstarâ Valid Redirect URIs https://owncloud.myDomain.net/"star
Base URL https://owncloud.myDomain.net/
Admin URL https://owncloud.myDomain.net/
Web Origins https://owncloud.myDomain.net
any idea of the problem in my conf ?
Thanks for help