Skip to content

Commit

Permalink
Merge pull request #1441 from jimmythedog/1440-fix-msoft-refresh-token
Browse files Browse the repository at this point in the history
#1440 Add offline_access scope, if required
  • Loading branch information
bonifaido authored Jul 8, 2020
2 parents 1d892c6 + b189d07 commit 62efe7b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions connector/microsoft/microsoft.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ const (
// Microsoft requires this scope to list groups the user is a member of
// and resolve their ids to groups names.
scopeGroups = "directory.read.all"
// Microsoft requires this scope to return a refresh token
// see https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent#offline_access
scopeOfflineAccess = "offline_access"
)

// Config holds configuration options for microsoft logins.
Expand Down Expand Up @@ -122,6 +125,10 @@ func (c *microsoftConnector) oauth2Config(scopes connector.Scopes) *oauth2.Confi
microsoftScopes = append(microsoftScopes, scopeGroups)
}

if scopes.OfflineAccess {
microsoftScopes = append(microsoftScopes, scopeOfflineAccess)
}

return &oauth2.Config{
ClientID: c.clientID,
ClientSecret: c.clientSecret,
Expand Down

0 comments on commit 62efe7b

Please sign in to comment.