Hello everyone,
I have an issue on Adwords API. Indeed, I can't do a report correctly on the API.
So my problem is the following:
I request request and access tokens (I get them).
I create a new AdwordsReport (I create it correctly).
When I do
report.getReport('v201710'{
reportName: 'Custom Adgroup Performance Report',
reportType: 'CAMPAIGN_PERFORMANCE_REPORT',
fields: ['CampaignId', "CampaignName", 'Impressions', 'Clicks', 'Cost', 'Amount'],
dateRangeType: 'LAST_7_DAYS',
format: "CSV"
});
I get a report, but empty and I don't understand why, because I have this configuration :
I have an adword manager account and a test account who is linked with the manager account.
Manager account and test account have campaigns and my billing addresses (both of them).
I do that request with my test account to get a report from my test campaigns.
I'm currently using a node module "node-adwords" to do these operations because the API doesn't offers a REST or node solution (or if it offers, could you give me the doc for that I searched a lot without a response), but I don't think that the problem is coming from that module because I've got my tokens from it.
Thanks for reading and have a nice day.
Serguei