Re: Text Ad Product Price Automatic Update

2012-11-01 Thread Peter Crowley
Hi Aaron, If you variablise price {param1:$9.50} also stock quantities {param2:5} in your AdWord text. You can then use the AdParamService to associate prices with each keyword. While doing it in the keyword seems like a pain it is cheap 0.1 unit per update. -Peter On Thursday, 1 November

Re: Cannot SET Adparam values through AdParamService using valid AdGroupId and CriterionIds values

2012-10-03 Thread Peter Crowley
I am using php but had to replace the '£' with '#x00A3;' -Peter On Tuesday, 2 October 2012 17:18:17 UTC+1, Sandbox wrote: I am trying to update parameters embedded in my adverts using the AdParamService mutate method with the SET operator as per the examples. I can't get it to work

Re: using adparam to set prices on all ads in an adgroup

2012-09-21 Thread Peter Crowley
Hi Justin I like you am publishing 1 product per ad 1 ad per adgroup I have typically 15 keywords per item. I update them 400 at a time. The updates are cheap at 0.1 Marking them first in the database for update, then looping over a SQL query with a limit 400 on it sending up 400 operations

Re: I am getting this error message intermittently when i am running GetRelatedKeywords.php. Failed to get authToken. Reason....

2012-08-25 Thread Peter Crowley
:47:43 AM UTC-4, Peter Crowley wrote: Yes, it looks like SSL is enabled...output from ' php -i | grep -i ssl': opensslOpenSSL support enabled OpenSSL Version OpenSSL 1.0.0-fips 29 Mar 2010 SSL support enabled On Wednesday, 22 August 2012 13:31:52 UTC+1, Danial Klimkin wrote: Hello Peter

Re: I am getting this error message intermittently when i am running GetRelatedKeywords.php. Failed to get authToken. Reason....

2012-08-23 Thread Peter Crowley
support enabled? This can be controlled differently for different OS distributions. It could be checked with: $ php -i | grep -i ssl -Danial, AdWords API Team. On Tuesday, August 21, 2012 3:18:25 PM UTC+4, Peter Crowley wrote: Hi Daniel, I put this Curl code in after the 'require_once

Re: I am getting this error message intermittently when i am running GetRelatedKeywords.php. Failed to get authToken. Reason....

2012-08-21 Thread Peter Crowley
Hi Daniel, I put this Curl code in after the 'require_once' but before the 'new AdWordsUser' $curl = curl_init(); $file = fopen($localfile, 'w'); curl_setopt($curl, CURLOPT_URL, https://google.com;); #input curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_FILE,

Re: I am getting this error message intermittently when i am running GetRelatedKeywords.php. Failed to get authToken. Reason....

2012-08-10 Thread Peter Crowley
I have been getting this message also. For several months. I assume something changed with my ISP. I have to reload the page several times then it executes. In case it helps my PHP version details are: PHP 5.2.17 with Suhosin-Patch 0.9.7 (cgi-fcgi) (built: May 29 2012 13:34:52) Copyright (c)

Re: Question about adParam GET/SET best practices

2012-07-31 Thread Peter Crowley
Hi Marc, Further to Dorian's comment here is some sample code: while($rec=mysql_fetch_assoc($sqlResult)) { $dbKeys[]=$rec['KWP_id']; // Create keywordParam. $adParam = new AdParam($rec['AdGroupID'], $rec['criterion_id'], cleanCurrency($rec['KWP_text']), $rec['KWP_index']);

Excessive capitalization

2012-05-01 Thread Peter Crowley
I have an ad using the acronym ABS (anti-lock brake system) in the first detail line I am getting Excessive capitalization message from the AdWords API. Is there a process to get this acronym white listed? [externalPolicyName] = [Capitalization] Excessive capitalization --

Using AdGroupAdOperation 'SET' instead of Add

2012-01-27 Thread Peter Crowley
I got my token (after 4 months! - I think Anash helped get me across the line, thx). My app is published to the live system after a few tweaks - Hurray! I have a question about whether you can use SET in AdGroupAdOperation rather then ADD when updating the content of a textAd? I made the changes

Re: Using AdGroupAdOperation 'SET' instead of Add

2012-01-27 Thread Peter Crowley
will grow you will get a lot of problems - speed of update and total bill will be not good. :) Regards, Evgeniy. On 27 янв, 18:39, Peter Crowley pcrow...@gmail.com wrote: I got my token (after 4 months! - I think Anash helped get me across the line, thx). My app is published

Re: php example in v201109 sandbox - can run GetAllCampaigns.php. CANNOT run AddCampaign.php

2011-11-28 Thread Peter Crowley
Hi Larry, I had a similiar problem when I moved to v201109. I think I ran GetClientCustomerId.php In auth.ini I then replaced clientId = client_1+youremailaddress with the returned customerID clientCustomerId = xx; commenting out the clientid line. They just released v201109 hopefully