Thanks, Shwetha. I thought I'd tried this. Obviously I hadn't properly and
it works.
--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=
I'm trying to get the final url array from a Google Adwords Java API
ExpandedTextAdd. I can get all of the other fields, such as the headlines,
description and path urls, but calling getfinalUrls always returns null,
even though the ad being requested has a final url.
This is my selector:
se
I'm having a similar problem, but using CreativeFinalUrls isn't fixing it
for me:
final SelectorBuilder selector = new SelectorFactory()
.build(AdGroupAdField.Id,
AdGroupAdField.AdGroupId,
AdGroupAdField.Status,
AdGroupAdFiel
I want to be able to get the labels attached to a google adwords ad via the
Java api.
I can get the ads:
final AdGroupAdPage page = service.get(selector.build());
if (page.getEntries() == null)
return;
for (AdGroupAd ad : page.getEntries())
ads.add((TextAd)ad.getAd());
But there's n