Skip to content

Commit

Permalink
Merge pull request #202 from siddharthab/master
Browse files Browse the repository at this point in the history
Fix service account token signature.
  • Loading branch information
hadley committed Mar 3, 2015
2 parents e746e97 + d166f11 commit 4a188b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/oauth-token.r
Expand Up @@ -278,7 +278,7 @@ TokenServiceAccount <- R6::R6Class("TokenServiceAccount", inherit = Token2.0, li
},
sign = function(method, url) {
config <- add_headers(
Authorization = paste('Bearer', self$access_token)
Authorization = paste('Bearer', self$credentials$access_token)
)
list(url = url, config = config)
},
Expand Down

0 comments on commit 4a188b7

Please sign in to comment.