consumerKey = $consumerKey; $this->consumerSecret = $consumerSecret; $this->callbackUrl = $callbackUrl; } public function addAccessToken($accessToken, $accessSecret = null) { $this->accessToken = $accessToken; $this->accessSecret = $accessSecret; } public function getOAuthBaseParams() { $params = array( "consumerKey" => $this->consumerKey, "consumerSecret" => $this->consumerSecret, "callbackUrl" => $this->callbackUrl, ); return $params; } public function handleParams() { return null; } public function handleHeaders() { return null; } } ?>