You are here

public function OAuthRequest::build_signature in OAuth 1.0 7.3

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

File

lib/OAuth.php, line 486
OAuth 1.0 server and client library.

Class

OAuthRequest

Code

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