summaryrefslogtreecommitdiff
path: root/vendor/OAuth/OAuth1/Service/AbstractService.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-09-09 07:21:10 +0200
committerFrédéric Guillot <fred@kanboard.net>2014-09-09 07:21:10 +0200
commit54a77cd58589e8c73543360af1469151fb1a550c (patch)
tree86ab929a2981a8147656c2e6119c7f1e0e130c3e /vendor/OAuth/OAuth1/Service/AbstractService.php
parent0d4b6525dd86f837eb9e931e48a92fc6a0033e11 (diff)
Update dependencies
Diffstat (limited to 'vendor/OAuth/OAuth1/Service/AbstractService.php')
-rwxr-xr-xvendor/OAuth/OAuth1/Service/AbstractService.php10
1 files changed, 2 insertions, 8 deletions
diff --git a/vendor/OAuth/OAuth1/Service/AbstractService.php b/vendor/OAuth/OAuth1/Service/AbstractService.php
index 0bff5558..43c9c9f6 100755
--- a/vendor/OAuth/OAuth1/Service/AbstractService.php
+++ b/vendor/OAuth/OAuth1/Service/AbstractService.php
@@ -82,10 +82,6 @@ abstract class AbstractService extends BaseAbstractService implements ServiceInt
}
$this->signature->setTokenSecret($tokenSecret);
- $extraAuthenticationHeaders = array(
- 'oauth_token' => $token,
- );
-
$bodyParams = array(
'oauth_verifier' => $verifier,
);
@@ -207,10 +203,8 @@ abstract class AbstractService extends BaseAbstractService implements ServiceInt
}
$parameters = array_merge($parameters, array('oauth_token' => $token->getAccessToken()));
-
- $mergedParams = (is_array($bodyParams)) ? array_merge($parameters, $bodyParams) : $parameters;
-
- $parameters['oauth_signature'] = $this->signature->getSignature($uri, $mergedParams, $method);
+ $parameters = (is_array($bodyParams)) ? array_merge($parameters, $bodyParams) : $parameters;
+ $parameters['oauth_signature'] = $this->signature->getSignature($uri, $parameters, $method);
$authorizationHeader = 'OAuth ';
$delimiter = '';