I have had code that was working in production with Adwords API 201609. I have upgraded to v201702 and it stopped working. There are no notes in the migration manual.
var request = require('unirest');
var builtAWQL="__rdquery=SELECT+StartDate,EndDate+FROM+CAMPAIGN_PERFORMANCE_REPORT+DURING+20171124,20171124&__fmt=TSV";
request.post(host)
.header(header)
.send(builtAWQL)
.end(function (results) {
console.log(results.body);
});
I get a result with no data in it. Any ideas?