Example #1
0
 function obtainRequestToken($extra = array())
 {
     return parent::obtainRequestToken(array_merge($extra, array("scope" => urlencode($this->scope))));
 }
Example #2
0
 function setSignatureInfo()
 {
     parent::setSignatureInfo();
     $this->app_id = $this->api->getConfig("oauth/" . $this->type . "/app_id");
 }
Example #3
0
 function check($scope = null)
 {
     $this->request_token_extra_auth = array("scope" => $scope);
     return parent::check();
 }