I use the following (a very simple function to get the item detail from ebay):
function eBayGetSingle($ItemID){ $URL = 'http://open.api.ebay.com/shopping'; //change these two lines $compatabilityLevel = 967; $appID = 'YOUR_APP_ID_HERE'; //you can also play with these selectors $includeSelector = "Details,Description,TextDescription,ShippingCosts,ItemSpecifics,Variations,Compatibility"; // Construct the GetSingleItem REST call $apicall = "$URL?callname=GetSingleItem&version=$compatabilityLevel" . "&appid=$appID&ItemID=$ItemID" . "&responseencoding=XML" . "&IncludeSelector=$includeSelector"; $xml = simplexml_load_file($apicall); if ($xml) { $json = json_encode($xml); $array = json_decode($json,TRUE); return $array; } return false; }
source share