public function sOAuthRequest::build_signature in jQuery social stream 7
Same name and namespace in other branches
- 7.2 jquery_social_stream.js.inc \sOAuthRequest::build_signature()
1 call to sOAuthRequest::build_signature()
File
- ./
jquery_social_stream.js.inc, line 790 - JS callbacks.
Class
Code
public function build_signature($signature_method, $consumer, $token) {
$signature = $signature_method
->build_signature($this, $consumer, $token);
return $signature;
}