Hi Team,
I'm developing an app for my company to improve the exhibition of ads based on my Google Shopping XML Feed. We are already creating campaign, adgroup, keywords, bid strategies, importing data from XML feed and creating Ads. The limitation we are having is that we cannot have a dynamic URL on the FinalURL field, this way instead of having one ad for the 1000 products, we would need to have 1000 ads, as we cannot use the dynamic flags. This limitation is described here: https://developers.google.com/adwords/api/docs/guides/ad-customizers You can put strings, prices, numbers, and even a countdown to a specific date/time in your ad. Replacements can occur in ad titles and description lines, but you cannot perform replacements using this feature on the display or final URLs <https://support.google.com/adwords/answer/6080568>. This is how it would be the ideal to create an Ad with the API $textAd1 = new TextAd(); $textAd1->headline = sprintf('{=%s.Name}', $feedName); $textAd1->description1 = sprintf('This is our best offer of {=%s.Preco} now!', $feedName); $textAd1->description2 = sprintf('Run as this is ending soon!', $feedName); *$textAd1->finalUrls = sprintf('%s{=%s.Url}', $website, $feedName);* $textAd1->displayUrl = $website; Where $feedName is the feed from Google checkout. One way which I think I could solve this is use the trackingTemplates and develop a system to map the destination URLs, but still it would mean a huge effort. For those who ended up having this issue, do you foresee a solution for this? Thanks and Regards, -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. Visit this group at http://groups.google.com/group/adwords-api. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/d834fa7c-80f5-417c-8ebd-ecfaca227215%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
