public function OAuthRequest::build_signature in OAuth 1.0 6
Same name and namespace in other branches
- 6.3 lib/OAuth.php \OAuthRequest::build_signature()
- 7.3 lib/OAuth.php \OAuthRequest::build_signature()
1 call to OAuthRequest::build_signature()
File
- ./
OAuth.php, line 380
Class
Code
public function build_signature($signature_method, $consumer, $token) {
/*{{{*/
$signature = $signature_method
->build_signature($this, $consumer, $token);
return $signature;
}