I'm using AdWords API v201708.

To get ALL (including 0 impressions) keywords' performances from the 
report, 
I made the below codes:

[PHP Code]
=====
$objOAuth2Credential = (new 
OAuth2TokenBuilder())->fromFile(PATH_ADWORDS_INI)
                                                                            
         ->build();
$objReportSetting = (new 
ReportSettingsBuilder())->includeZeroImpressions(true) <<< Set 
"includeZeroImpressions" property true.
                                                    
 ->skipColumnHeader(true)
                                                    
 ->skipReportHeader(true)
                                                    
 ->skipReportSummary(true)
                                                     ->build();
$objSession = (new AdWordsSessionBuilder())->fromFile(PATH_ADWORDS_INI)
                                              
 ->withOAuth2Credential($objOAuth2Credential)
                                              
 ->withReportSettings($objReportSetting)
                                               ->build();
$objReport = new ReportDownloader($objSession);
…
=====

I set the "includeZeroImrepssions" property true.
However, I couldn't get keywords with 0 impressions.

What should I do to get those keywords?
I have to set some necessary properties?

Regards.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 [email protected]
To unsubscribe from this group, send email to
[email protected]
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 [email protected].
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/c554cdcb-8665-4d3d-9e8c-1fe3112a004f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
  • How to refer 0 i... T.Motodate

Reply via email to