apiUrl = $apiUrl; $this->userName = $userName; $this->token = $token; $this->ucid = $ucid; $this->st = $st; } /** * get site list * @return array */ public function getSiteList() { $apiConnection = new DataApiConnection(); $apiConnection->init($this->apiUrl . '/getSiteList', $this->ucid); $apiConnectionData = array( 'header' => array( 'username' => $this->userName, 'password' => $this->st, 'token' => $this->token, 'account_type' => BAIDU_ACCOUNT_TYPE, ), 'body' => null, ); $apiConnection->POST($apiConnectionData); return array( 'header' => $apiConnection->retHead, 'body' => $apiConnection->retBody, 'raw' => $apiConnection->retRaw, ); } /** * get data * @param array $parameters * @return array */ public function getData($parameters) { $apiConnection = new DataApiConnection(); $apiConnection->init($this->apiUrl . '/getData', $this->ucid); $apiConnectionData = array( 'header' => array( 'username' => $this->userName, 'password' => $this->st, 'token' => $this->token, 'account_type' => BAIDU_ACCOUNT_TYPE, ), 'body' => $parameters, ); $apiConnection->POST($apiConnectionData); return array( 'header' => $apiConnection->retHead, 'body' => $apiConnection->retBody, 'raw' => $apiConnection->retRaw, ); } }