jar = new \GuzzleHttp\Cookie\CookieJar; // Uncomment if cookies need to be set } public function test() { $test = parent::appTest($this->url('api/v1/config')); echo $test->status; } public function livestats() { $status = 'inactive'; $res = parent::execute($this->url('api/v1/config')); $details = json_decode($res->getBody(), True); $data = []; if($details) { $data['photos'] = number_format($details['count']['photos']) ?? 0; $data['videos'] = number_format($details['count']['videos']) ?? 0; } return parent::getLiveStats($status, $data); } public function url($endpoint) { $api_url = parent::normaliseurl($this->config->url).$endpoint; return $api_url; } }