Skip to content

Commit

Permalink
LinkedIn['keys']['key'] should be LinkedIn['keys']['id']
Browse files Browse the repository at this point in the history
Hybridauth complained because $this->config['keys']['id'] does not exist for LinkedIn... this fixes the problem
  • Loading branch information
utrenkner authored and Nicholas Calugar committed Feb 7, 2019
1 parent 2454c2b commit 601b9b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ScnSocialAuth/Service/HybridAuthFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
),
),
Expand Down

0 comments on commit 601b9b3

Please sign in to comment.