Skip to content

Commit 8d81600

Browse files
committed
fix(auth): invalid key file arguments for Apple OAuth provider
1 parent 538246d commit 8d81600

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/auth/src/OAuth/Config/AppleOAuthConfig.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ public function createProvider(): AbstractProvider
6060
return new Apple([
6161
'clientId' => $this->clientId,
6262
'teamId' => $this->teamId,
63-
'keyId' => $this->keyId,
64-
'keyFile' => $this->keyFile,
63+
'keyFileId' => $this->keyId,
64+
'keyFilePath' => $this->keyFile,
6565
]);
6666
}
6767

0 commit comments

Comments
 (0)