You are here

public function sOAuthRequest::build_signature in jQuery social stream 7.2

Same name and namespace in other branches
  1. 7 jquery_social_stream.js.inc \sOAuthRequest::build_signature()
1 call to sOAuthRequest::build_signature()
sOAuthRequest::sign_request in ./jquery_social_stream.js.inc

File

./jquery_social_stream.js.inc, line 922
JS callbacks.

Class

sOAuthRequest

Code

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