Hi, I'm using Google ads api to call Keywords performance report.
However, the downloaded report at Google ads platform and the data called api are different,
so we are looking for a solution to this problem.
I'm attaching the code used for the call,
so I'd like to ask you if you have any ideas about the problem.
[Result]
Google Ads Platform (Report)
Impr. 11,266
Clicks 7,464
Cost 268,823
Google Ads Api (keywords performance)
Impr. 17,065
Clicks 9,481
Cost 416,431,000,000
[Code]
//CampainId : 633021517
builder.where("CampaignId").in("633021517");
//fields : KEYWORDS_PERFORMANCE_REPORT
builder.fields("CampaignName", "CampaignId", "AdGroupName", "AdGroupId", "AdGroupStatus", "Criteria", "Id", KeywordMatchType, "Clicks", "Cost", "Impressions", "Ctr", "AverageCpc", "Conversions", ViewThroughConversions, "CostPerConversion", "ConversionRate",
//start date : '202021106' end date : '202021106'
builder.during(LocalDate.parse('20201106', format), LocalDate.parse('20201106', format)).build();
//report option
ReportingConfiguration reportingConfiguration = new ReportingConfiguration.Builder()
Thank you.