Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/keycloak/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Omniauth
module Keycloak
VERSION = '1.5.3'
VERSION = "1.2.2"
end
end
2 changes: 1 addition & 1 deletion lib/omniauth/strategies/keycloak-openid.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def setup_phase

raise_on_failure = options.client_options.fetch(:raise_on_failure, false)

config_url = URI.join(site, "#{auth_url_base}/realms/#{realm}/.well-known/openid-configuration")
config_url = URI.join(site, "/realms/#{realm}/.well-known/openid-configuration")

log :debug, "Going to get Keycloak configuration. URL: #{config_url}"
response = Faraday.get config_url
Expand Down