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