My APIlity 1.13.1 PHP scripts were working fine last month, and now
when I try to read the Content Network Report, it gives me this error:
Warning: APIlity PHP library => Warning: Cache file for:
https://adwords.google.com/api/adwords/v13/ReportService?wsdl has an
invalid file size in /usr/www/virtual/vge/lib/WsdlCache.php on line
156
Here is the PHP script I am using to get the report:
$apilityUser = new APIlityUser();
$apilityUser->setClientEmail($client_email);
get_content_network_report();
function get_content_network_report() {
$res=getContentPlacementXmlReport(
"Content Network Report",
"2009-01-01",
"2019-12-31",
array
("Campaign","AdGroup","PlacementDomain","SiteTargeted","Clicks","Cost","Conversions"),
array("AdGroup","Domain","Summary"),
array(),
array(),
array(),
array(),
array(),
array(),
"ContentOnly",
"",
false,
array(),
true, # includeZeroImpression
30,
false,
false
);
print $res;
}
When I change the Sleep Time from 30 to 300, then it gives me a 300000
millisecond timeout error, with only 276 bytes received. What could be
wrong?
Victor