Skip to content

Commit

Permalink
Merge pull request #56 from Metrakit/laravel-4
Browse files Browse the repository at this point in the history
Fix bug with the Facebook provider
  • Loading branch information
adamwathan committed Apr 1, 2015
2 parents 16a47fd + b87d7ad commit e8e4392
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ protected function requestAccessToken()
'client_id' => $this->clientId,
'client_secret' => $this->clientSecret,
'redirect_uri' => $this->redirectUri(),
'code' => $this->request->authorizationCode(),
'code' => $this->getAuthorizationCode(),
],
]);
} catch (BadResponseException $e) {
Expand Down

0 comments on commit e8e4392

Please sign in to comment.