Hi Everyone!
I faced with a problem of getting Report from AdWords using API ad JAVA.
The problem is:
1) KEYWORDS_PERFORMANCE_REPORT - does not returns any negative keywords on the AdGroup level.
It is my queary for Negative keywords:
query = new ReportQuery.Builder()
.fields(
"AdGroupId",
"Criteria",
"Id",
"LabelIds")
.from(ReportDefinitionReportType.KEYWORDS_PERFORMANCE_REPORT)
.where("IsNegative").equalTo("TRUE")
.where("AdGroupStatus").equalTo("ENABLED")
.where("Status").equalTo("ENABLED")
.build();
2) KEYWORDS_PERFORMANCE_REPORT - return a lot of keywords, which I can can not see at my account.
This code shows query for NotNegative keywords. Unfortunately, I have only two active keywords in my account, but this query returns m for about 100+ KWs....
query = new ReportQuery.Builder()
.fields(
"AdGroupId",
"Criteria",
"Id",
"LabelIds")
.from(ReportDefinitionReportType.KEYWORDS_PERFORMANCE_REPORT)
.where("AdGroupStatus").equalTo("ENABLED")
.where("Status").equalTo("ENABLED")
.build();
Could someone explain me what can be a problem?
Looking Forward,
Saidar