AdWords API Re: Google adwords .net API

2009-08-04 Thread Harutyun Terteryan
Hi, I have compared our web.config with mine, and the section is exactly same. regards Harut. On Tue, Aug 4, 2009 at 11:36 AM, AdWords API Advisor < adwordsapiadvi...@google.com> wrote: > > Hi, > > I made a simple web project that uses the library, my web.config is > given below. Can you compa

AdWords API Re: api class-fieldsspecification

2009-08-04 Thread AdWords API Advisor
Hi Harut, statusSpecified and status are independent properties of AdGroup objects, setting value for one property does not affect the value of the other property. However, they work together when you make an AdWords API call. For instance, assume that you are trying to Enable a Paused AdGroup.

AdWords API Re: Google adwords .net API

2009-08-04 Thread AdWords API Advisor
Hi Harut, How about in section? Are they in place as well? Regards, Anash P. Oommen, AdWords API Team On Aug 4, 12:04 pm, Harutyun Terteryan wrote: > Hi, > > I have compared our web.config with mine, and the section is > exactly same. > > regards > Harut. > > On Tue, Aug 4, 2009 at 11:36 AM

AdWords API Re: Google adwords .net API

2009-08-04 Thread Harutyun Terteryan
Thank's, I missed that section, it solves the loging problem! Best regards Harut. On Tue, Aug 4, 2009 at 12:26 PM, AdWords API Advisor < adwordsapiadvi...@google.com> wrote: > > Hi Harut, > > How about in section? Are they in > place as well? > > Regards, > Anash P. Oommen, AdWords API Team >

AdWords API Re: api class-fieldsspecification

2009-08-04 Thread Harutyun Terteryan
Ok Thank's for quick answer :). Best Harut. On Tue, Aug 4, 2009 at 12:22 PM, AdWords API Advisor < adwordsapiadvi...@google.com> wrote: > > Hi Harut, > > statusSpecified and status are independent properties of AdGroup > objects, setting value for one property does not affect the value of > the

AdWords API Re: Reports API / Videos as "gadgetTemplate"s, videoPlaybacks field missing

2009-08-04 Thread Kemal
Hello, Seems like the videoPlaybacks column is back, but it is always "0", even though the videoPlaybacksThrough25Percent/50Percent/75Percent/ 100Percent columns are greater than 0. creativeType is still "gadgetTemplate" by the way, shouldn't it be "video"? One of the job ids is 1046482951. Our

AdWords API Delivery method of campaign

2009-08-04 Thread Adi
Hi, Is there a way to change the "delivery method" by the V13 API? Thanks, Adi. --~--~-~--~~~---~--~~ 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-api@googlegroup

AdWords API Invalid Clicks

2009-08-04 Thread dyutiman
Hi, Generally Google remove invalid clicks as soon as it finds it. Sometimes it takes more days to find it. I download daily keyword report every day and keyword latency report for last 30 days. Today on August 4th I see some more clicks on my report for date of 9th July then Google console. I che

AdWords API GeoTargetting with Perl API v200906

2009-08-04 Thread Exiges
I'm trying to create a command to set the CountryCode targetting for a given campaign. It looks like the only module that accepts the countryCode parameter is CountryTarget.pm, but I don't know at what point to call it in the hash I'm creating. This is how far I've got. Any ideas ? my $target_o

AdWords API Re: GeoTargetting with Perl API v200906

2009-08-04 Thread Exiges
PS. I'm then calling the CampaignTargetService() --~--~-~--~~~---~--~~ 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-api@googlegroups.com To unsubscribe from this gr

AdWords API Re: Delivery method of campaign

2009-08-04 Thread AdWords API Advisor
Hi Adi, Unfortunately it is not possible to change this value using the v13 API, but it is possible using the new v2009 API. The Budget object has a field called deliveryMethod for this purpose: http://code.google.com/apis/adwords/v2009/docs/reference/CampaignService.Budget.html#deliveryMethod.

AdWords API Re: GeoTargetting with Perl API v200906

2009-08-04 Thread AdWords API Advisor
Hi, Everything looks good except for your use of GeoTarget. It is an abstract class (http://code.google.com/apis/adwords/v2009/docs/ reference/CampaignTargetService.GeoTarget.html), so you wouldn't construct one directly. Instead you would construct a CountryTarget object, which inherits from G

AdWords API Re: GeoTargetting with Perl API v200906

2009-08-04 Thread Exiges
Unfortunately that didn't work (for me at least) I get this error: cannot use Google::AdWords::v200906::Types::CountryTarget reference as value for targets - Google::AdWords::v200906::Types::GeoTarget required at /work/apache/virtual/splut/cgibin/googleinc.cgi line 716 My code was this: my $

AdWords API AdWords Downtime: August 8, 10am-2pm PDT

2009-08-04 Thread AdWords API Advisor
We'll be performing routine system maintenance on Saturday, August 8 from approximately 10:00am to 2:00pm PDT. You won't be able to access AdWords or the API during this time frame, but your ads will continue to run as normal. Best, -Eric Koleda, AdWords API Team --~--~-~--~~-

AdWords API Re: GeoTargetting with Perl API v200906

2009-08-04 Thread Exiges
Unfortunately that didn't work (for me at least) I get this error: cannot use Google::AdWords::v200906::Types::CountryTarget reference as value for targets - Google::AdWords::v200906::Types::GeoTarget required at . My code was this: my $countryCode = "GB"; my $target_operations = { oper

AdWords API How to get adText headline, description1, description2 properties?

2009-08-04 Thread notalian
We are using adservice and "getAllAds" method: http://code.google.com/apis/adwords/docs/developer/AdService.html#getAllAds) The properties being returned include: adGroupID adType adTypeSpecified detination etc. But we are unable to get headline, description1 properties. How do we get these pr

AdWords API Re: How to get adText headline, description1, description2 properties?

2009-08-04 Thread AdWords API Advisor
Hi there, Have you tried taking a look at the incoming SOAP response from the server? The properties are probably there, the problem is that they might be getting omitted by your programming environment. getAllAds returns a list of Ads, which can be any number of subclasses (TextAd, ImageAd, etc

AdWords API Re: GeoTargetting with Perl API v200906

2009-08-04 Thread AdWords API Advisor
Hello, Hmmm, for some reason when the Google::AdWords::v200906::Types::GeoTargetList class is auto-generated from the WSDL by SOAP::WSDL, the targets element is defined as being a single Google::AdWords::v200906::Types::GeoTarget element, rather than an array reference to potentially multiple Go

AdWords API Re: GeoTargetting with Perl API v200906

2009-08-04 Thread Exiges
Thanks for your prompt response. Is there a programatically way around it for now ? --~--~-~--~~~---~--~~ 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-api@googlegr

AdWords API Re: GeoTargetting with Perl API v200906

2009-08-04 Thread Exiges
As you suggest in your post, if you pass in a singular element (as below) ie. not in an array, it seems to work OK. For now I guess I could call GeoTargetList multiple times.. not ideal, but it'll get me by for now. my $target_operations = { operations => [ { operator => "SET", o

AdWords API Re: GeoTargetting with Perl API v200906

2009-08-04 Thread Exiges
As you suggest in your post, if you pass in a singular element (as below) ie. not in an array, it seems to work OK. For now I guess I could call GeoTargetList multiple times.. not ideal, but it'll get me by for now... Because there was no online example of targetting with the Perl API, I've been

AdWords API Re: How to get adText headline, description1, description2 properties?

2009-08-04 Thread notalian
Thanks for a prompt response. The development environment is as follows: Visual Studio 2008 C# Version 13 of adService (https://adwords.google.com/api/adwords/v13/ AdService?wsdl) Here is the code snippet: com.google.adservice.AdService service = new com.google.adservice.AdService();

AdWords API keywordvariation for average monthly volume

2009-08-04 Thread Goose
I came across keywordvariation in the developer's guide to get the average monthly volume for a word seed. http://code.google.com/apis/adwords/docs/developer/KeywordVariation.html I haven't been able to write a php code to use this. Can I get some help please (a code snippet or some tips)? --~--

AdWords API Seed keyword type=Exact with keyword_tool_service

2009-08-04 Thread Goose
I tried to change the seed keyword type to an "Exact match" for keyword_tool_service but didn't see any difference in the result when compared with "Broad match". Does match type "Exact" work with getKeywordVariations or is there an error in the code below? # Create seed keyword structure. $seed

AdWords API Re: keywordvariation for average monthly volume

2009-08-04 Thread Goose
I am all set with this. Thanks On Aug 4, 11:14 am, Goose wrote: > I came across keywordvariation in the developer's guide to get the > average monthly volume for a word > seed.http://code.google.com/apis/adwords/docs/developer/KeywordVariation.html > > I haven't been able to write a php code to

AdWords API SandBox Login Failure - dot net caller

2009-08-04 Thread doyle.john...@hotmail.com
I am attempting to get a login and reference to KeywordService with the following code: AdWordsUser user = new AdWordsUser(); KeywordToolService service = (KeywordToolService)user.GetService (ApiServices.v13.KeywordToolService); GetToken() within class AuthToken is failing - throwing a Log

AdWords API Re: Reports API / Videos as "gadgetTemplate"s, videoPlaybacks field missing

2009-08-04 Thread AdWords API Advisor
Hello Kemal, That job id was gone by the time I looked, but I think I found an equivalent report in your MCC account that illustrates the behavior. I took a look at the ads in one of the ad groups in question, and I think the characterization of the creativeType is correct--they're click-to-pl

AdWords API Re: GeoTargetting with Perl API v200906

2009-08-04 Thread AdWords API Advisor
Yeah, sorry that I didn't include an example in my response, but as you say, doing the targets one at a time is the workaround for now. Cheers, -Jeff Posnick, AdWords API Team On Aug 4, 12:50 pm, Exiges wrote: > As you suggest in your post, if you pass in a singular element (as > below) ie. no

AdWords API Re: Seed keyword type=Exact with keyword_tool_service

2009-08-04 Thread AdWords API Advisor
Hello, The behavior is not entirely intuitive, especially if you're familiar with the web-based tool. Please see this blog post: http://adwordsapi.blogspot.com/2009/01/keyword-match-type-and.html There have also been a few other threads in this Google Group regarding the same behavior that y