Re: Is there any campaign report that provide both Geo and campaign data at the same time?

2022-05-13 Thread MJOLNIR TTT
the api team answer : PARAMETERS omit_unselected_resource_names = true ; but it not works for me . I have to aggregate response data use python.pandas by self . 在2022年5月7日星期六 UTC+8 03:00:32 写道: > Hey Guys any update on this. can we pull geo and campaign information now. > > On Friday, April

Re: Is there any campaign report that provide both Geo and campaign data at the same time?

2022-04-27 Thread MJOLNIR TTT
ok , The query is : """ SELECT geographic_view.country_criterion_id, segments.date, campaign.id, campaign.name, customer.currency_code, customer.descriptive_name, metrics.clicks, metrics.cost_micros, metrics.impressions,

Re: Is there any campaign report that provide both Geo and campaign data at the same time?

2022-04-26 Thread MJOLNIR TTT
geo_target_constant.resource_name -> geographic_view. resource_name 在2022年4月26日星期二 UTC+8 21:50:46 写道: > Now , I could deal with mapping relationship between country_criterion_id > and country name . > But with difficulties in this situation(python code): > > import argparse > from itertools

Re: Is there any campaign report that provide both Geo and campaign data at the same time?

2022-04-26 Thread MJOLNIR TTT
Now , I could deal with mapping relationship between country_criterion_id and country name . But with difficulties in this situation(python code): import argparse from itertools import product import multiprocessing import time from google.ads.googleads.client import GoogleAdsClient from

Re: Is there any campaign report that provide both Geo and campaign data at the same time?

2022-04-22 Thread MJOLNIR TTT
My fundamental needs : campaign report that provide both Geo and campaign data (id, name , cost ). But if geo_target_county is not available in geographic_view , which report can use ? is there mapping relationship between country_criterion_id and country name ? 在2022年4月22日星期五 UTC+8

Is there any campaign report that provide both Geo and campaign data at the same time?

2022-04-21 Thread MJOLNIR TTT
I've checked geographic_view, query = """ SELECT geographic_view.country_criterion_id, segments.device, segments.date, segments.geo_target_county, campaign.id, campaign.name, customer.currency_code, customer.descriptive_name,