route = ['oauth/validate']; $this->actor->sendGET($this->getUrl($queryParams)); } public function complete($queryParams = [], $postParams = []) { $this->route = ['oauth/complete']; $this->actor->sendPOST($this->getUrl($queryParams), $postParams); } public function issueToken($postParams = []) { $this->route = ['oauth/issue-token']; $this->actor->sendPOST($this->getUrl(), $postParams); } }