Or more exactly: "!!!1|||4921|||Could not read report???"
I have been trying to test the report definition creation, and
subsequent report download.
It worked previously, but now I started to get that message.
>From what I can see, I changed nothing, especially, did not request
cross-client report neither did I add any field that could have led to
this problem. So far the only topic I found here mentioned these
possibilities.
I am requesting two reports, one for the automatic placements another
for managed placements.
The fields are as follows:
private static final String[] AUTO_PLACEMENT_REPORT_FIELDS = new
String[] { "AdGroupId", "Clicks",
"ConversionRate", "Conversions", "Date", "Domain" };
private static final String[] MANAGED_PLACEMENT_REPORT_FIELDS = new
String[] { "AdGroupId", "Clicks",
"ConversionRate", "Conversions", "Date",
"PlacementUrl", "Id" };
The request:
ReportDefinitionServiceInterface service =
user.getService(AdWordsService.V201008.REPORT_DEFINITION_SERVICE);
Selector selector = new Selector();
selector.setFields(AUTO_PLACEMENT_REPORT_FIELDS);
selector.setPredicates(new Predicate[] {});
ReportDefinition definition = new ReportDefinition();
definition.setReportName(AUTO_PLACEMENT_REPORT_NAME);
definition.setReportType(ReportDefinitionReportType.AUTOMATIC_PLACEMENTS_PERFORMANCE_REPORT);
definition.setHasAttachment(false);
definition.setDateRangeType(ReportDefinitionDateRangeType.YESTERDAY);
definition.setDownloadFormat(DownloadFormat.CSV);
definition.setSelector(selector);
ReportDefinitionOperation operation = new
ReportDefinitionOperation();
operation.setOperator(Operator.ADD);
operation.setOperand(definition);
ReportDefinition[] result = service.mutate(new
ReportDefinitionOperation[] { operation });
Note that I do change it accordingly for the managed report.
Did I miss anything?
Or could it be a temporary problem on your side?
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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