You are here

public function OAuthRequest::build_signature in OAuth 1.0 6

Same name and namespace in other branches
  1. 6.3 lib/OAuth.php \OAuthRequest::build_signature()
  2. 7.3 lib/OAuth.php \OAuthRequest::build_signature()
1 call to OAuthRequest::build_signature()
OAuthRequest::sign_request in ./OAuth.php

File

./OAuth.php, line 380

Class

OAuthRequest

Code

public function build_signature($signature_method, $consumer, $token) {

  /*{{{*/
  $signature = $signature_method
    ->build_signature($this, $consumer, $token);
  return $signature;
}