Thanks,
1 ) I ran this code:
var query = "SELECT Query, Ctr, Cost, DestinationUrl, FinalUrl Impressions FROM SEARCH_QUERY_PERFORMANCE_REPORT " +
"WHERE Query = 'dog' AND segments.AdNetworkType1 = CONTENT" +
"DURING LAST_30_DAYS"
and got this exception:
Exception: Could not identify resource for search query "SELECT Query, Ctr, Cost, DestinationUrl, FinalUrl Impressions FROM SEARCH_QUERY_PERFORMANCE_REPORT WHERE Query = 'dog' AND segments.AdNetworkType1 = CONTENTDURING LAST_30_DAYS". Double-check your FROM clause. (file Code.gs, line 69)
What's wrong?
2) To understand the logic of this report:
Search Query Performance Report
The Search Terms report includes all statistics aggregated at the search terms level, one row per combination of search terms. If other segment fields are used, you may get more than one row per combination of search terms. See segmentation for more information.
In other words, given the query "dog" what am I expecting to see in the report?
The GDN websites that were part of Google search for "dog" including ones which I don't advertise on yet?
3) If I were to use the GoogleAds API instead of the AdWords API. Would I still be able to run it from a web IDE? Do I have to add another layer of authentication + Developer Token which weren't needed with GoogleAds API?
Thanks