Forum Moderators: coopster
Can anyone here help me and point out what could be wrong?
The code is
=======
require_once 'SOAP/Client.php';
$debug =1;
$wsdl_url =
'http://soap.amazon.com/schemas3/AmazonWebServices.wsdl';
$WSDL = new SOAP_WSDL($wsdl_url);
$client = $WSDL->getProxy();
$params = array(
'mode' => 'photo',
'page' => 1,
'type' => 'lite',
'browse_node' => '499108',
'tag' => 'deleted-20',
'devtag' => 'deleted',
);
$amazon_products = $client->BrowseNodeSearchRequest($params);
if ($debug == 1) {
print_r($amazon_products);
}
============
The error happens once every three or four requests (which means about 33-25% of my data could potentially be inaccurate).
============
<snip>
[edited by: jatar_k at 11:10 pm (utc) on Aug. 13, 2003]
[edit reason] see sticky [/edit]