AdWords API More PHP Samples

2009-11-05 Thread Priyantha Gunawardena
Hi All, Replace this with the google client library you will find more samples. Some of the cords may not clear. I wrote this for some testing purposes. -- ... Priyantha Gunawardena __ {Web Design

AdWords API BiddingError.MUST_EXCLUDE_0_TO_17_WITH_OTHER_AGE_EXCLUSIONS

2009-11-05 Thread Greg
Hi All, I am getting the above error when using the CampainTargetService. I'm looking for further information on the above error and how to solve it. Java API. I am calling mutate on a CampainTargetService object passing in a number of CampaignTargetOperation objects, one of which has an array

AdWords API Re: Money -> microAmount

2009-11-05 Thread AdWords API Advisor
Hi Marko, In response to your questions: 1) Yes. A micro is a millionth of the fundamental currency. In the US the fundamental currency is the dollar. 2) Yes, the fundamental currency is different in different countries. So for an account with UK currency the micro will be one millionth of the

AdWords API Re: Which currency does user use?

2009-11-05 Thread AdWords API Advisor
Hi Marko, The AccountService method getAccountInfo can be used to get this information: http://code.google.com/apis/adwords/docs/developer/AccountService.html#getAccountInfo. The returned AccountInfo object has a field which contains the currencyCode of the account: http://code.google.com

AdWords API Re: Need One Keywords Avg Search Volume

2009-11-05 Thread AdWords API Advisor
Hi, The v13 KeywordToolService.getKeywordVariations has a fixed cost of 20 units per request, so the number of results returned will not affect the cost: http://code.google.com/apis/adwords/docs/developer/adwords_api_ratesheet.html However, the new v2009 TargetingIdeaService does allow for the l

AdWords API Re: InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @

2009-11-05 Thread AdWords API Advisor
Hi Emanuele, This error is triggered when trying to add a campaign to an MCC account. When using the sandbox environment you must make sure to use the correct values in the clientEmail header. More information about the headers is available here: http://code.google.com/apis/adwords/docs/deve

AdWords API Re: Adwords4r and mutate an AdGroupAd

2009-11-05 Thread AdWords API Advisor
Hi Dan, I believe the problem is that your adservice_data object is not structured correctly. This object represents an AdGroupAd, which doesn't have an "id" field ( see http://code.google.com/apis/adwords/v2009/docs/reference/AdGroupAdService.AdGroupAd.html ). Instead, there is an "ad" field ho

AdWords API Re: TARGETED_MONTHLY_SEARCHES

2009-11-05 Thread AdWords API Advisor
Hi Madhava, Thank you for reporting this issue. I have been able to replicate the problem and will alert the core engineering department. I will update this thread when I have more information. Best, - Eric Koleda, AdWords API Team On Nov 5, 2:23 am, Madhava Savitr wrote: > I am now in the pr

AdWords API Re: Estimating traffic / cost for managed site placement?

2009-11-05 Thread AdWords API Advisor
Hi Mike, The recently launch TargetingIdeaService has many of the capabilities you are looking for. Given some seed information it can return related placements (URLs) and some basic information about that placement. A good introduction to the service can be found on the AdWords API blog: http:

AdWords API Re: Building a Bulk Mutate Job (sandbox)

2009-11-05 Thread AdWords API Advisor
Hi Marcin, Your code appears to be correct, perhaps there is an issue with the generated XML. Do you have the SOAP XML logs from this type of request? I'm not sure if you've been using it already, but the PHP library contains a test case for the BulkMutateJobService that you can use as a referen

AdWords API Money -> microAmount

2009-11-05 Thread MarkoZ
Hi, API reference says that type Money (http://code.google.com/apis/ adwords/v2009/docs/reference/CampaignService.Money.html) has field microAmount, and its description is: “Amount in micros. One million is equivalent to one unit”. My questions are: 1. How much one unit cost? Is it 1$? 2.

AdWords API Which currency does user use?

2009-11-05 Thread MarkoZ
Is there some way to get (through AdWords API) currency that user's account use? Marko -- You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to adwords-...@googlegroups.com. To unsubscribe from this group, send

AdWords API Need One Keywords Avg Search Volume

2009-11-05 Thread Joel
Which service would I use to pull the average search volume for 1 keyword? I'm using the Variations service and it's returning too many values. It's just a waste of units for me. And examples would help greatly. -- You received this message because you are subscribed to the Google Groups "AdWord

AdWords API Re: Too many targeted locations In Campaign Update

2009-11-05 Thread ga...@structuredweb.com
I overlooked the region targets. This will help us a big time. Thank you Eric. On Nov 5, 1:34 pm, AdWords API Advisor wrote: > Hi Mahesh, > > The v13 version of the API also supports the addition of states > through RegionTargets: > >  http://code.google.com/apis/adwords/docs/developer/RegionTa

AdWords API Adwords4r and mutate an AdGroupAd

2009-11-05 Thread Dan Hill
Hi all, I'm developing a tool using Ruby Rails and Adwords4r. All is going great, apart from I keep getting an InternalApiError.UNEXPECTED_INTERNAL_API_ERROR every time I try and SET mutate an AdGroupAd (a text ad). I can create the ad fine, but whenever I try and update its status it gives me thi

AdWords API InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @

2009-11-05 Thread Emanuele Cellini
Hello, I try to ADD a campain with the following SOAP code but return this error can you help me to resolve this issue? The Request is: http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xmlns:SOAP-ENC="

AdWords API TARGETED_MONTHLY_SEARCHES

2009-11-05 Thread Madhava Savitr
I am now in the process of upgrading my appliction to v200909 that was written for v13. I am having some problem in doing so. I am trying to fetch TARGETED_MONTHLY_SEARCHES, KEYWORD, COMPETITION, .AVERAGE_TARGETED_MONTHLY_SEARCHES, The service returns only three values except "AVERAGE_TARGETED_M

AdWords API Estimating traffic / cost for managed site placement?

2009-11-05 Thread Mike
I am trying to create a tool that helps people find websites to place site-targeted ads on via managed placement. Say, for example, that I have a URL "http://site.com"; that I know for a fact has AdSense on it. How can I, using the API, get any kind of information about what would happen if they

AdWords API Building a Bulk Mutate Job (sandbox)

2009-11-05 Thread marcinc
I am using v2009 of adwords API with PHP5. I would like to use BulkMutateJobService to package my operations into a single job. According to google docs to achieve that I need to follow the steps: 1. Construct the operations I want to perform (as the standard mutate operations). $adgroupad1

AdWords API Re: exact match search volume for keyword tool service - java

2009-11-05 Thread AdWords API Advisor
Hi, While I don't have an exact match for your code here are some resources you may find helpful: AdWords API Blog Post on TargetingIdeaService: http://adwordsapi.blogspot.com/2009/11/discover-v2009-getting-ideas-with.html Example submitted by forum member: http://www.pgdesigning.com/php/200