Skip to content

Commit

Permalink
Merge pull request #418 from leansoft/master
Browse files Browse the repository at this point in the history
Bugfix for facebook scope delimter
  • Loading branch information
elliotchance committed Sep 16, 2015
2 parents 5187eb6 + 7876036 commit 24bc167
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/OAuth/OAuth2/Service/Facebook.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,4 +197,11 @@ public function getDialogUri($dialogPath, array $parameters)
$query = http_build_query($parameters);
return new Uri($baseUrl . '?' . $query);
}
/**
* {@inheritdoc}
*/
protected function getScopesDelimiter()
{
return ',';
}
}

0 comments on commit 24bc167

Please sign in to comment.