From 601b9b3a240b58838dd9c6dedbeb59bcffb37fc3 Mon Sep 17 00:00:00 2001 From: Uwe Trenkner Date: Thu, 9 Aug 2018 16:26:20 +0200 Subject: [PATCH] LinkedIn['keys']['key'] should be LinkedIn['keys']['id'] Hybridauth complained because $this->config['keys']['id'] does not exist for LinkedIn... this fixes the problem --- src/ScnSocialAuth/Service/HybridAuthFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ScnSocialAuth/Service/HybridAuthFactory.php b/src/ScnSocialAuth/Service/HybridAuthFactory.php index 16b26ee3..d05e7427 100644 --- a/src/ScnSocialAuth/Service/HybridAuthFactory.php +++ b/src/ScnSocialAuth/Service/HybridAuthFactory.php @@ -90,7 +90,7 @@ public function createService(ServiceLocatorInterface $services) 'LinkedIn' => array( 'enabled' => $options->getLinkedInEnabled(), 'keys' => array( - 'key' => $options->getLinkedInClientId(), + 'id' => $options->getLinkedInClientId(), 'secret' => $options->getLinkedInSecret(), ), ),