芝麻web文件管理V1.00
编辑当前文件:/home/seolotod/critterchoice.com/wp-content/plugins/wp-automatic/inc/class.walmart.php
ch = $ch; $this->apiKey = $apiKey; if(wp_automatic_trim($lsPublisherId) == '') $lsPublisherId = 1804192 ; $this->lsPublisherId = $lsPublisherId; } function getItemsByKeyword($keyword,$parms=array(),$start=0){ //http://api.walmartlabs.com/v1/search?apiKey={apiKey}&lsPublisherId={Your LinkShare Publisher Id}&query=ipod // Encoded keyword $keywordEnc= urlencode( wp_automatic_trim($keyword) ); // Search URL $wallMartUrl = "http://api.walmartlabs.com/v1/search?apiKey={$this->apiKey}&publisherId={$this->lsPublisherId}&query=$keywordEnc&responseGroup=full"; // Additional Parms foreach ($parms as $key=>$value){ $wallMartUrl.= '&'.wp_automatic_trim($key) .'='.wp_automatic_trim(urlencode($value)); } echo '
'.wp_automatic_str_replace($this->apiKey, '[key]', $wallMartUrl) ; // Execute $x='error'; curl_setopt($this->ch, CURLOPT_HTTPGET, 1); curl_setopt($this->ch, CURLOPT_URL, wp_automatic_trim($wallMartUrl)); $exec=curl_exec($this->ch); $x=curl_error($this->ch); //validate reply if(wp_automatic_trim($exec) == ''){ throw new Exception('Empty response from Walmart with possible curl error '.$x); } return $this->parseResult($exec); } function getItemByUPC(){ } function parseResult($exec){ //validate Json if(!stristr($exec, '{')){ throw new Exception('Not Json reply from walmart: '.$exec); } //Json decode $json = json_decode($exec); //return return $json->items; } }