public function OAuthStore2Leg::getSecretsForSignature in Lingotek Translation 7.7
Same name and namespace in other branches
- 7.2 lib/oauth-php/library/store/OAuthStore2Leg.php \OAuthStore2Leg::getSecretsForSignature()
- 7.3 lib/oauth-php/library/store/OAuthStore2Leg.php \OAuthStore2Leg::getSecretsForSignature()
- 7.4 lib/oauth-php/library/store/OAuthStore2Leg.php \OAuthStore2Leg::getSecretsForSignature()
- 7.5 lib/oauth-php/library/store/OAuthStore2Leg.php \OAuthStore2Leg::getSecretsForSignature()
- 7.6 lib/oauth-php/library/store/OAuthStore2Leg.php \OAuthStore2Leg::getSecretsForSignature()
Overrides OAuthStoreAbstract::getSecretsForSignature
File
- lib/
oauth-php/ library/ store/ OAuthStore2Leg.php, line 59
Class
Code
public function getSecretsForSignature($uri, $user_id) {
return array(
'consumer_key' => $this->consumer_key,
'consumer_secret' => $this->consumer_secret,
'signature_methods' => $this->signature_method,
'token' => $this->token_type,
);
}