Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
Merge pull request #3 from vinkla/fix-2
Browse files Browse the repository at this point in the history
The correct config keys were not being passed to MetzWeb\Instagram.
  • Loading branch information
vinkla committed Jan 11, 2015
2 parents 227105d + 5059f13 commit 26f6214
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Vinkla/Instagram/InstagramServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ public function register()
}

return new Instagram([
$app['config']['instagram::client_id'],
$app['config']['instagram::client_secret'],
$app['config']['instagram::callback_url']
'apiKey' => $app['config']['instagram::client_id'],
'apiSecret' => $app['config']['instagram::client_secret'],
'apiCallback' => $app['config']['instagram::callback_url']
]);
});
}
Expand Down

0 comments on commit 26f6214

Please sign in to comment.