I am trying to migrate the AdWords to ads api and I have the following problem:
I am using the v8 API on googleads==12.0.0 because I have python 3.6 on the project and I am trying the following call:
1. Get a google client using the following method
credentials = {
"use_proto_plus": False,
"developer_token": self.ads_developer_token,
"refresh_token": self.ga_refresh_token,
"client_id": self.ga_client_id,
"login_customer_id": self.ads_login_customer_id,
"client_secret": self.ga_client_secret
}
return GoogleAdsClient.load_from_dict(credentials)
2. Get the FeedService
self.ads_client.get_service('FeedService', version='v8')
3. Trying to get a feed by its id
self.ads_feed_service.get_feed(resource_name=f"customers/xxx/feeds/{self.feed_id}")
4. From the response object I want to get the
attributes field that is specified here
https://developers.google.com/google-ads/api/reference/rpc/v8/Feedbut what I get is the following, I've attached a picture for that.
Only two fields
Affiliate and
Places are to be found, any advice on this?