You are here

public function OAuthServer::fetch_request_token in OAuth 1.0 7.3

Same name and namespace in other branches
  1. 6.3 lib/OAuth.php \OAuthServer::fetch_request_token()
  2. 6 OAuth.php \OAuthServer::fetch_request_token()

process a request_token request returns the request token on success

File

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

Class

OAuthServer

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;
}