Getting an error when sending predicates for report download.

This is complete returned error:

[2017-10-25 15:23:27] AW_REPORT_DOWNLOADER.WARNING: 
clientCustomerId=[removed by me] AE Bid Management Tool (AwApi-PHP, 
googleads-php-lib/31.0.0, PHP/7.0.22-0ubuntu0.16.04.1, GuzzleHttp/6.2.1) 
"POST /api/adwords/reportdownload/v201710 HTTP/1.1" Status: 400   
[2017-10-25 15:23:27] AW_REPORT_DOWNLOADER.NOTICE: Request:
POST /api/adwords/reportdownload/v201710 HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Host: adwords.google.com
Authorization: REDACTED
developerToken: REDACTED
clientCustomerId: [removed by me]
User-Agent: AE Bid Management Tool (AwApi-PHP, googleads-php-lib/31.0.0, 
PHP/7.0.22-0ubuntu0.16.04.1, GuzzleHttp/6.2.1)
skipReportHeader: true
skipColumnHeader: true
skipReportSummary: true
useRawEnumValues: false

__rdxml=<?xml version="1.0"?>
<reportDefinition>
<selector>
<fields>Criteria</fields>
<fields>CampaignName</fields>
<fields>AdGroupName</fields>
<fields>Status</fields>
<fields>CpcBid</fields>
<fields>AveragePosition</fields>
<fields>Labels</fields>
<fields>Id</fields>
<predicates>
<item key="0">
<field>Status</field>
<operator>NOT_IN</operator>
<values>
<item key="0">REMOVED</item>
</values>
</item>
<item key="1">
<field>CampaignStatus</field>
<operator>IN</operator>
<values>
<item key="0">ENABLED</item>
</values>
</item>
<item key="2">
<field>AdGroupStatus</field>
<operator>IN</operator>
<values>
<item key="0">ENABLED</item>
</values>
</item>
<item key="3">
<field>Impressions</field>
<operator>GREATER_THAN_EQUALS</operator>
<values>1</values>
</item>
<item key="4">
<field>CampaignName</field>
<operator>DOES_NOT_CONTAIN_IGNORE_CASE</operator>
<values>Remarketing</values>
</item>
<item key="5">
<field>CampaignName</field>
<operator>DOES_NOT_CONTAIN_IGNORE_CASE</operator>
<values>Content</values>
</item>
<item key="6">
<field>CampaignName</field>
<operator>DOES_NOT_CONTAIN_IGNORE_CASE</operator>
<values>Display</values>
</item>
</predicates>
</selector>
<reportName>KeywordReport_59f0904f4352f</reportName>
<reportType>KEYWORDS_PERFORMANCE_REPORT</reportType>
<dateRangeType>YESTERDAY</dateRangeType>
<downloadFormat>CSV</downloadFormat>
</reportDefinition>


Response:
REDACTED REPORT DATA
--------
Error:
Client error: `POST 
https://adwords.google.com/api/adwords/reportdownload/v201710` resulted in 
a `400 Bad Request` response



If I send the request without predicates, everything works. I have tried 
sending just one predicate at a time (tried this with each one of them) and 
I always get the same error.

Predicates are being build in php like this:

// get filters from database
$filters = getAdwordsPredicates('labels');
if(!empty($filters)){
$preds = array();
 foreach($filters as $filter){
$forarray = 
array('IN','NOT_IN','CONTAINS_ALL','CONTAINS_ANY','CONTAINS_NAME');
if(in_array($filter['condition'], $forarray)){// these require an array to 
be sent
$val = array($filter['text']);
}else{
$val = $filter['text']; // these don't require array
}
$preds[] = new Predicate($filter['field'], $filter['condition'], [$val]);
}
$selector->setPredicates([$preds]);
}

any help/advice is appreciated.

Thanks


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b00d19ee-945a-4bef-b58d-365eb08cb9fd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to