AdWords API Re: Auth Token Expiry

2010-01-29 Thread nothize
Hi Shriny, I've read that it's about two weeks but could be vary from time to time. Also, a password change may invalidate the token for a short period, say 10 minutes. I'd prefer to refresh the token whenever it's invalid. AOP techniques (AspectJ) should be a perfect match. Then the caching and

AdWords API Re: Strange Login Error

2010-01-29 Thread pete
Cool Glad the thread was useful to you. And that you're happy again :) -- 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 email to adwor

AdWords API Re: vb.net examples

2010-01-29 Thread Soapy
Hi Weblamer, I struggled porting our VB.net desktop apps over to 2009 too. I've finally got them working! Don't try and use the built in web references, you need to create them manually using the wsdl.exe from the DOS prompt example: C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin>wsdl

AdWords API Re: Is there any alternate option to make report without validating or scheduling

2010-01-29 Thread ipsita rout
Hi Eric, I got the solution of my previous problem.But if u want me briefly explain the problem I was facing and how I solved that ,then I must explain,so that others who are facing will be benefited.But apart from that I just want to know that ,can I make report using more than one aggregation typ

AdWords API can I make report using more than one aggregation type but running the report only once?

2010-01-29 Thread ipsita rout
can I make report using more than one aggregation type but running the report only once? I mean, as like I can get report for more than one clients of an MCC registered A/c by using in $report_job , again as like I can get report for more than one options by using in $report_job Exactly as above.

AdWords API TrafficEstimatorService

2010-01-29 Thread Kamil Kaczmarczyk
Hello I have recently developed application that uses Adwords API's TrafficEsitmatorService to estimate a keyword. But the results of these api calls are different than ones given by website https://adwords.google.se/select/KeywordToolExternal . Can you give me some points on how to make api resul

AdWords API Unknown aggregation Type Issue in Adwords api

2010-01-29 Thread anuj j patel
Hi, We are facing problem of "Unknown aggregation Type" in Search query Performance report of adwords api for combination: ["Campaign", "DayOfWeek"]. Please consider following description.. Report : Search Query Performance Report The Request XML we are sending is : http://www.w3.org/2001/XM

AdWords API Re: keyword suggestion tool

2010-01-29 Thread rk
Hi, I have used adwords4r for the same purpose and it worked well. Regards, Radek -- 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 emai

AdWords API Re: Integration old api code with new v2009

2010-01-29 Thread AdWords API Advisor
Hi, We have a new video available that covers the migration process: http://www.youtube.com/watch?v=N-JWtfRjPCA Best, - Eric Koleda, AdWords API Team On Jan 28, 7:31 am, "freesystems.t...@gmail.com" wrote: > Hi, > > I have integrated google adwords api in my project. > I am using php so i ha

Re: AdWords API Re: BulkMutateJob and extra identifiers

2010-01-29 Thread AdWords API Advisor
Hi Kyle, Looking at your code I believe the main cause of your slow processing time is that you are calling mutate() with only one operation at a time. This is a very inefficient way to process operations, since there is a round-trip across the network and a fixed cost on the AdWords API servers

AdWords API Re: local campain

2010-01-29 Thread AdWords API Advisor
Hi Tang, You'll want to use the CampaignTargetService to add a ProximityTarget: http://code.google.com/apis/adwords/v2009/docs/reference/CampaignTargetService.html http://code.google.com/apis/adwords/v2009/docs/reference/CampaignTargetService.ProximityTarget.html To get the GeoPoint (latit

AdWords API Re: What are the effects of deleting all adgroups and criterion from a campaign?

2010-01-29 Thread AdWords API Advisor
Hi Kyle, As I mentioned in my recent follow-up to that other thread, I believe you are finding the API slow because you are attempting to add/update keywords one at a time, instead of in a batches. This is not the recommended way to use this service, and batching together your operations should a

AdWords API Re: The developer token is invalid

2010-01-29 Thread AdWords API Advisor
Hi, Do you have the request ID for this request? I can use that to look up the problem. Best, - Eric Koleda, AdWords API Team On Jan 28, 12:42 pm, "na...@actualweb.es" wrote: > hello, my problem is that my development token is invalid. I requested > a new one and has been accepted, besides I h

AdWords API Re: Developer Token

2010-01-29 Thread AdWords API Advisor
Hi, The developer token application process may take up to two weeks to complete. Best, - Eric Koleda, AdWords API Team On Jan 28, 12:46 pm, blueyesmax2 wrote: > hi all, > i subscrived to API ADWORDS API but i didn't receive any developers > token so i can't proceed with my services... > how lo

AdWords API Re: Bulk Mutate Jobs Are Always Pending

2010-01-29 Thread AdWords API Advisor
Hi, Please see my response in this related thread: http://groups.google.com/group/adwords-api/browse_thread/thread/c176528c67469ad6/cb56695a7b8dc129?lnk=gst&q=TOO+MANY+JOBS+IN+QUEUE#cb56695a7b8dc129 Are there any jobs in your queue that are in the PROCESSING state? Best, - Eric Koleda, AdWord

AdWords API Re: BoomUserList

2010-01-29 Thread timprepscius
Just out of curiosity. Were the keywords of type BoomUserList special in any way? On Jan 23, 11:22 pm, pete wrote: > ok - cheers > > pete -- 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-...@goo

AdWords API Re: Fault occurred while processing - Is it an Internal Error???

2010-01-29 Thread AdWords API Advisor
Hi, Which URL are you using to create your service? I think you may be sending a v2009 request to a v13 endpoint. Best, - Eric Koleda, AdWords API Team On Jan 28, 2:03 pm, shriny wrote: > I just tried a simple add campaigns and got this error, > "Fault occurred while processing" > > Out Soap M

Re: AdWords API Re: Correct way to delete a keyword

2010-01-29 Thread AdWords API Advisor
Hi Rich, Thanks for pointing that out, I had missed the "During an ADD operation:" part, which does muddle the description a bit. I'll work with the documentation team to have that flushed out. Best, - Eric On Jan 28, 2:15 pm, Rich Johns wrote: > There may be more doc somewhere, but following

AdWords API Re: Getting auth token thru ClientLogin API

2010-01-29 Thread AdWords API Advisor
Hi Maxim, That's correct, the value should be "adwords". This is documented in the headers section of the developer documentation under authToken: http://code.google.com/apis/adwords/v2009/docs/headers.html Best, - Eric Koleda, AdWords API Team On Jan 29, 1:47 am, Maxim wrote: > ok, after l

AdWords API Re: missing results in TargetingIdeaService

2010-01-29 Thread AdWords API Advisor
Hi Derek, It appears that both tools are returning keyword ideas for "spell checker", can you elaborate more on the problem? Best, - Eric Koleda, AdWords API Team On Jan 28, 8:59 pm, Derek Knapp wrote: > when I search the old keyword tool   > -->https://adwords.google.com/select/KeywordToolExte

AdWords API v2009 TargetingIdeaService usage

2010-01-29 Thread dmitriy
Hello I would like to use that service for get 'AVERAGE_TARGETED_MONTHLY_SEARCHES' (or null/emty/zero if unknown) for just one certain 'EXACT' search query, not for some other similar search queries. Tell me please, does it possible? If no, then how much paging number results should I set to get th

AdWords API Re: is there a shared Dev Token and Application Token

2010-01-29 Thread AdWords API Advisor
Hi Jon, Since your company developed the application you should sign up for a developer token, not the customers that use it. All API charges will be billed to your company, and you would have to bill the customers directly. You can use the InfoService to determine how many API units were used b

AdWords API Re: Errors not descriptive

2010-01-29 Thread AdWords API Advisor
Hi Maxim, It looks like your SOAP headers aren't set correctly. The SOAP headers should look like this: https://adwords.google.com/api/adwords/cm/ v200909"> INSERT_AUTHENTICATION_TOKEN_HERE INSERT_USERAGENT_HERE INSERT_DEVELOPER_TOKEN_HERE INSERT_APPLICATION_TOKEN_

AdWords API Re: Is there any alternate option to make report without validating or scheduling

2010-01-29 Thread AdWords API Advisor
Hi, Only certain types report multiple aggregation types, but those are used to drill down and limit the results, not include multiple kinds of data. For example, the Search Query Performance Report uses two aggregation values ("Account, Daily", "Campaign, Weekly", etc): http://code.google.co

AdWords API Re: can I make report using more than one aggregation type but running the report only once?

2010-01-29 Thread AdWords API Advisor
Hi, Please see my response in your other thread: http://groups.google.com/group/adwords-api/browse_thread/thread/4871bb6956a7d82d/ Best, - Eric Koleda, AdWords API Team On Jan 29, 8:41 am, ipsita rout wrote: > can I make report using more than one aggregation type but running the > report o

AdWords API Re: TrafficEstimatorService

2010-01-29 Thread AdWords API Advisor
Hi Kamil, The TrafficEstimatorService is more closely related to the Traffic Estimator Sandbox web interface: https://adwords.google.com/select/TrafficEstimatorSandbox Best, - Eric Koleda, AdWords API Team On Jan 29, 6:53 am, Kamil Kaczmarczyk <0jc...@gmail.com> wrote: > Hello > > I have rece

AdWords API Re: Unknown aggregation Type Issue in Adwords api

2010-01-29 Thread AdWords API Advisor
Hi Anuj, In the AdWords API array values are represented by repeating the same element many times. I can see you are already doing this for selectedColumns, and you should do the same for aggregationTypes too. The XML should look like: Query Sample Report

AdWords API Re: v2009 TargetingIdeaService usage

2010-01-29 Thread AdWords API Advisor
Hi, If you only want to get information for your source keywords you can set the TargetingIdeaSelector field requestType to "STATS": http://code.google.com/apis/adwords/v2009/docs/reference/TargetingIdeaService.TargetingIdeaSelector.html#requestType Best, - Eric Koleda, AdWords API Team On J

AdWords API Re: UI and APIs enforce different max length for BiddableAdGroupCriterion's DestinationUrl

2010-01-29 Thread AdWords API Advisor
Hi Hans, It appears that the AdWords API currently allows for URLs of up to 2083 characters, although the AdWords web interface only allows 1024. We are working on getting these numbers in sync, so in the mean time I advise you to build your application to allow for a URL of up to 2083 characters

AdWords API BulkMutateJobService inserting incorrect keyword bug???

2010-01-29 Thread majco
Hi, Language : .NET API Version : V200909 Service : BulkMutateJobService Using: real account not sandbox Problem: I want insert these keywords: Slova´kia keyword1 keyword2 ... keyword51 First keyword is incorrect because char ´ is not valid - and BulkMutateResult for this keyword is FailureResu

AdWords API Re: Fault occurred while processing - Is it an Internal Error???

2010-01-29 Thread shriny
Hi Eric, I am using this url https://adwords.google.com/api/adwords/cm/v200909/CampaignService hope this is the correct one -Shriny On Jan 29, 8:08 am, AdWords API Advisor wrote: > Hi, > > Which URL are you using to create your service?  I think you may be > sending a v2009 request to a v13 e

AdWords API Re: Cost

2010-01-29 Thread Dane
But I am using googles supplied standardscript with no modifications. And I am using the SOAP version suggested??? The only thing I did was inserting my personal data. I would think that the script google supplied used to work at some point? -- You received this message because you are subscribe

AdWords API Questions about Automatic Placement??

2010-01-29 Thread James604
Hi there, I have successfully pulled down over 60,000 criterions along with the mapping with Adgroups. When I am reviewing my data, I found that those automatic placements are not pulled down. But I did pull down all of the managed placements. C# code --- AdGroupCr

AdWords API Re: Fault occurred while processing - Is it an Internal Error???

2010-01-29 Thread AdWords API Advisor
Hi, The problem appears to be that their header isn't set correctly. I'm not sure how clearly we document it right now, but unlike v13 instead of setting each header directly you need to set one header called "RequestHeader" which then has a field for each of the header values: https://adwords

AdWords API Re: Errors not descriptive

2010-01-29 Thread Maxim
Hello. I understand one header should be "authToken", not just "auth". But the API blog says "applicationToken" is no longer required. Is that correct? -- You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to ad

AdWords API Re: BulkMutateJobService inserting incorrect keyword bug???

2010-01-29 Thread majco
Somebody used the BulkMutateJobService in real account? Because I think that it is very, very unreliable!!! Many times I have received ReturnValueResult type for keywords but these keywords wasn't added to the Adwords account!!! What do you think about? -- You received this message because you

AdWords API Re: Errors not descriptive

2010-01-29 Thread Maxim
Still no luck... Same response. clientEmail header does not apply in this case. POST /api/adwords/cm/v200909/CampaignService HTTP/1.0 Content-Type: text/xml; charset=utf-8 Accept: application/soap+xml, application/dime, multipart/related, text/* User-Agent: Axis/1.4 Host: adwords.google.com Cache-

AdWords API Re: Errors not descriptive

2010-01-29 Thread AdWords API Advisor
Hi Maxim, You are correct, the applicationToken header is no longer required. However, you still haven't built your header correctly. There should be one RequestHeader element with an element inside of it for each header value. Please look at my example again. Best, - Eric On Jan 29, 4:23 pm,

AdWords API api v2009 - mutate

2010-01-29 Thread jeff
we used to be able to update bid without setting the rest criterion attributes. with v2009, we got errors like 'matchtype, text... are required'. does this mean that we need to start querying for hydrated objects before update? is there a way to tell the api to just update the attributes being set

AdWords API validateOnly not working???

2010-01-29 Thread majco
Hi, I have this code: Dim criterionService As AdGroupCriterionService criterionService = CType(iUser.GetService (AdWordsService.v200909.AdGroupCriterionService), AdGroupCriterionService) criterionService.RequestHeader.validateOnly = True insertReturnValue = cri

AdWords API Re: Errors not descriptive

2010-01-29 Thread Maxim
OK, I see it. I looked at Google's client libraries' source code to see how to set the header properly. It would help if instead of hardcoding the request header type definition inside client libraries you'd actually defined it in WSDL. MSN did just that: You could do something like that

AdWords API Re: Errors not descriptive

2010-01-29 Thread Maxim
OK, I was confused, because Axis did not generate a class for SoapHeader type in Wsdl. To whom it may concern, if you are using Axis +Ant to generate Soap client for Google AdWords API, make sure you use all="true" parameter when you invoke Axis-wsdl2java Ant task. Thanks, Eric. -- You received