Skip to content

Commit

Permalink
Merge a67962d into 5240636
Browse files Browse the repository at this point in the history
  • Loading branch information
alancting committed Nov 10, 2020
2 parents 5240636 + a67962d commit b472898
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alancting/oauth2-microsoft-openid",
"version": "1.0.1",
"version": "1.0.2",
"description": "Microsoft Azure Active Directory (Azure AD), Microsoft Active Directory Federation Services (ADFS) OpenId Integration for Symfony",
"type": "symfony-bundle",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/Client/AbstractMicrosoftKnpUClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function fetchAccessTokenByRefreshToken(
) {
$params = [
'refresh_token' => $refreshToken->getToken(),
'scope' => array_merge($this->getOAuth2Provider()->getDefaultScopes(), $scopes),
'scope' => implode(' ', array_merge($this->getOAuth2Provider()->getDefaultScopes(), $scopes)),
];

return $this->getOAuth2Provider()->getAccessToken(
Expand Down

0 comments on commit b472898

Please sign in to comment.