You are here

public function OAuthRequest::build_signature in jQuery social stream 8

Same name and namespace in other branches
  1. 8.2 src/Twitter/OAuthRequest.php \Drupal\jquery_social_stream\Twitter\OAuthRequest::build_signature()
1 call to OAuthRequest::build_signature()
OAuthRequest::sign_request in src/Twitter/OAuthRequest.php

File

src/Twitter/OAuthRequest.php, line 250

Class

OAuthRequest

Namespace

Drupal\jquery_social_stream\Twitter

Code

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