You are here

public function sOAuthServer::fetch_request_token in jQuery social stream 7.2

Same name and namespace in other branches
  1. 7 jquery_social_stream.js.inc \sOAuthServer::fetch_request_token()

process a request_token request returns the request token on success

File

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

Class

sOAuthServer

Code

public function fetch_request_token(&$request) {
  $this
    ->get_version($request);
  $consumer = $this
    ->get_consumer($request);

  // no token required for the initial token request
  $token = NULL;
  $this
    ->check_signature($request, $consumer, $token);

  // Rev A change
  $callback = $request
    ->get_parameter('oauth_callback');
  $new_token = $this->data_store
    ->new_request_token($consumer, $callback);
  return $new_token;
}