From 6bbca65fdd297f37be849354fa1d785fe4ce9307 Mon Sep 17 00:00:00 2001 From: Theodor Brandt Date: Mon, 4 Jul 2022 14:47:01 +0200 Subject: [PATCH] fix: add issuerURL for apple id (#2565) No issuer url was specified when using the Apple ID provider, this forced usersers to manually enter it in the provider config. This PR adds the Apple ID issuer url to the provider simplifying the setup. --- selfservice/strategy/oidc/provider_apple.go | 1 + 1 file changed, 1 insertion(+) diff --git a/selfservice/strategy/oidc/provider_apple.go b/selfservice/strategy/oidc/provider_apple.go index aa1e395ad3de..4ea727516e47 100644 --- a/selfservice/strategy/oidc/provider_apple.go +++ b/selfservice/strategy/oidc/provider_apple.go @@ -24,6 +24,7 @@ func NewProviderApple( config *Configuration, reg dependencies, ) *ProviderApple { + config.IssuerURL = "https://appleid.apple.com" return &ProviderApple{ ProviderGenericOIDC: &ProviderGenericOIDC{ config: config,