AdWords API Re: Errors not descriptive

2010-01-28 Thread Maxim
Here's a very basic API call: return campaignService.get(new CampaignSelector(new long[0], new CampaignStatus[0], null, null)).getEntries(); results in: POST /api/adwords/cm/v200909/CampaignService HTTP/1.0 Content-Type: text/xml; charset=utf-8 Accept: application/soap+xml, application/dime, mult

AdWords API Re: Getting auth token thru ClientLogin API

2010-01-28 Thread Maxim
ok, after little trial and error, the obvious "adwords" is the correct value :) On Jan 28, 5:25 pm, Maxim wrote: > Shriny, that's not what I was asking, but thanks anyway. > Question is, what's the value for "service" parameter matching AdWords > service for the POST request for the URL that you

AdWords API is there a shared Dev Token and Application Token

2010-01-28 Thread von journ
Hi, we developed an application for a few customers using adwords API. However it is not feasible to ask each customer to apply for their own DevToken and AppToken. Optimally, we hope to have a shared devToken and appToken that we can hard code in our application (and not let customer know), a

AdWords API missing results in TargetingIdeaService

2010-01-28 Thread Derek Knapp
when I search the old keyword tool --> https://adwords.google.com/select/KeywordToolExternal for "spell checker' (Results are tailored to English, United States) I get the following keywords as you type spell checker best free spell checker best spell checker computer spell checker but when I us

AdWords API Re: Getting auth token thru ClientLogin API

2010-01-28 Thread Maxim
Shriny, that's not what I was asking, but thanks anyway. Question is, what's the value for "service" parameter matching AdWords service for the POST request for the URL that you mentioned? -- You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To

AdWords API Re: Getting auth token thru ClientLogin API

2010-01-28 Thread shriny
Maxim, You need to use the http request to get the auth token in adwords, it doesn't have any wsdl. need to use this "https://www.google.com/accounts/ClientLogin"; url Hope this helps. -Shriny On Jan 28, 4:48 pm, Maxim wrote: > From Google Client Login API documentation: > service Name of th

AdWords API Getting auth token thru ClientLogin API

2010-01-28 Thread Maxim
>From Google Client Login API documentation: service Name of the Google service you're requesting authorization for. Each service using the Authorization service is assigned a name value; for example, the name associated with Google Calendar is 'cl'. This parameter is required when accessing servic

AdWords API Re: TargetingIdeaService

2010-01-28 Thread Greg
I found the issue. The API requires 2.0 of ZSI and I had an older version installed. On Jan 28, 12:35 pm, Greg wrote: > I am also getting this error when running the unit tests. I am running > 9.0.0 of the awapi python lib > > On Jan 28, 11:20 am, Greg wrote: > > > When I try to run a test using

AdWords API Auth Token Expiry

2010-01-28 Thread shriny
How often will the auth token expire? How to handle it in client side, should we store it in a database and use it or get a new token everytime we do any adwords operations ? This would be helpful in designing our systems. -Shriny -- You received this message because you are subscribed to th

AdWords API Re: example of using the apility library

2010-01-28 Thread blt
for the above code, i expect it to give me a report, but on running it , gives me a blank page. help is appreciated.. On Jan 28, 3:20 pm, blt wrote: > Hello, > > Need some help getting started on using apility library for reporting > service. > Just want to see a complete example where the api

AdWords API example of using the apility library

2010-01-28 Thread blt
Hello, Need some help getting started on using apility library for reporting service. Just want to see a complete example where the apility library is used to call srevices and gets the value out of it. Didnt found it anywhere. Thanks. -- You received this message because you are subscribed to

AdWords API Re: Cost

2010-01-28 Thread AdWords API Advisor
Hi Dane, The problems seems to be caused by the way your arrays are being encoded: Campaign AdGroup ... The API is unable to recognize the array type ur-type. The API is expecting arrays in the form of: Campaign AdGroup See the XML sample code for a complete request:

AdWords API Re: 404 Not Found Message

2010-01-28 Thread AdWords API Advisor
Hi, The v2009 API has been open to everyone without signup since August: http://adwordsapi.blogspot.com/2009/08/adwords-api-v2009-beta-now-available-to.html You can start using the sandbox and production right away. Have fun! Best, - Eric Koleda, AdWords API Team On Jan 28, 2:27 am, HMcorp

AdWords API Re: Errors not descriptive

2010-01-28 Thread AdWords API Advisor
Hi, This error usually indicates that the operand wasn't set on the operation, but it appears that you've done that. Do you have the associated SOAP XML request and response for that error? Best, - Eric Koleda, AdWords API Team On Jan 27, 8:42 pm, Maxim wrote: > I'm getting same error while ca

AdWords API Re: gte total costs and clicks

2010-01-28 Thread AdWords API Advisor
Hi, An alternative would be to use the CampaignService to get all campaigns within an account, include the statsSelector on the selector to retrieve stats for a given day, and then add up the returned costs and clicks from the returned campaigns. Best, - Eric Koleda, AdWords API Team On Jan 27,

AdWords API Re: mapping zip codes or cities to Metropolitan Region Codes

2010-01-28 Thread AdWords API Advisor
Hi Craig, Unfortunately there is currently no way get the cities and zip codes that belong to a metro. The metro codes used by the API are the Designated Marketing Areas (DMAs) supplied by Nielsen: http://adwords.google.com/support/aw/bin/answer.py?hl=en&answer=100477 Best, - Eric Koleda, AdW

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

2010-01-28 Thread Rich Johns
There may be more doc somewhere, but following the link provided, I only find this: "Current user set state of criterion. During an ADD operation: It may not be set to DELETED. Defaults to UserStatus.Active if unspecified." which is ambiguous wrt to SET. Not trying to get pissy here, just fyi.

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

2010-01-28 Thread shriny
I just tried a simple add campaigns and got this error, "Fault occurred while processing" Out Soap Message says soap:Server Fault occurred while processing. Here is my soap resquest and response. === = Elapsed: 274 milliseconds = In messag

AdWords API Re: Correct way to delete a keyword

2010-01-28 Thread AdWords API Advisor
Hi Manish, James is correct, you'll want to use a REMOVE operation instead. As for the userStatus, the documentation indicates that DELETED cannot be used for BAGC: http://code.google.com/apis/adwords/v2009/docs/reference/AdGroupCriterionService.BiddableAdGroupCriterion.html#userStatus Best,

AdWords API Re: How to clear Bulk Jobs from Queue?

2010-01-28 Thread AdWords API Advisor
Hi Joe, Only one BMJ can be running at a time per AdWords account, and it will have the status PROCESSING. Your PENDING jobs can't start until the job before it finishes. Please ensure you leave enough time for your job to finish. Best, - Eric Koleda, AdWords API Team On Jan 27, 2:12 pm, Joe_R

AdWords API Re: TargetingIdeaService and getTotalNumEntries

2010-01-28 Thread AdWords API Advisor
Hi Derek, I believe this is a limitation of the backend, and you'll see a similar number of results when using the Search-based Keyword Tool: http://www.google.com/sktool Best, - Eric Koleda, AdWords API Team On Jan 27, 12:59 pm, kingsob wrote: > when using the TargetingIdeaService, I have t

AdWords API Re: Couldn't get all keywords

2010-01-28 Thread James604
Hi Eric, I was thinking of using page field on the selector, but the question is what if I retrieve a huge amount of keywords, so every calls to the service, they will keep the same result & same order so that it allows me to enumerate pages??? so far i managed to call the service using two dozen

AdWords API Re: TargetingIdeaService

2010-01-28 Thread Greg
I am also getting this error when running the unit tests. I am running 9.0.0 of the awapi python lib On Jan 28, 11:20 am, Greg wrote: > When I try to run a test using the TargetingIdeaService, I first got > an error saying that SOAPpy was not supported so I switched to ZSI but > now am getting th

AdWords API Bulk Mutate Jobs Are Always Pending

2010-01-28 Thread sidd
I am having some issues with the Bulk Job service. I am testing against the sandbox. My jobs are always set to PENDING and never seem to complete. I've seen this with my own code, but also am seeing the same problem with the BulkMutateJobServiceTests unit test. My jobs are created but never co

AdWords API Developer Token

2010-01-28 Thread blueyesmax2
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 longs it takes, anyone can help me ? thanx -- You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group,

AdWords API The developer token is invalid

2010-01-28 Thread na...@actualweb.es
hello, my problem is that my development token is invalid. I requested a new one and has been accepted, besides I have no "api unit" spent. any ideas? Sorry for my english. -- You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this g

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

2010-01-28 Thread Kyle LeNeau
Hello, As the subject states my question is simple: what are or would be the effect of deleting all adgroups and their criterion from a campaign? For example, will I loose bids on established keywords, statistics traffic, reporting, etc. Please be specific if you know the answer. My reason for

Re: AdWords API Re: BulkMutateJob and extra identifiers

2010-01-28 Thread Rich Johns
Just a couple of thoughts... when updating a keyword's destinationUrl, there is edit review period. Do each of the bulk operations block until the edit review period completes? Another thought (although this seems unlikely and would suck if it were true) is that the AdGroup is placed in some sort o

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

2010-01-28 Thread Kyle LeNeau
Hello, As the subject states my question is simple: what are or would be the effect of deleting all adgroups and their criterion from a campaign? For example, will I loose bids on established keywords, statistics traffic, reporting, etc. Please be specific if you know the answer. My reason for

AdWords API TargetingIdeaService

2010-01-28 Thread Greg
When I try to run a test using the TargetingIdeaService, I first got an error saying that SOAPpy was not supported so I switched to ZSI but now am getting the following error: Traceback (most recent call last): File "C:\eclipse\plugins \org.python.pydev.debug_1.5.3.1260479439\pysrc\pydevd.py", l

AdWords API local campain

2010-01-28 Thread Tang
Hi, i succeed in creating a local campain, but i don't know how i can define the target zone of the campain. For example if i wan my campain to be displayed only at 20 km around Paris town ? thanks for your help Tang -- You received this message because you are subscribed to the Google Groups

AdWords API Re: Reminder: Version v200906 will be shut down in one week

2010-01-28 Thread Parminder Matharu
Hi Jason, Is there any news on a further release post v200909? I.e. when do you think you will be releasing a newer version? Thanks Parm On Jan 26, 6:28 pm, AdWords API Advisor wrote: > http://adwordsapi.blogspot.com/2010/01/reminder-version-v200906-will-... > > The v200906 API, which we rele

AdWords API Re: BulkMutateJob and extra identifiers

2010-01-28 Thread Kyle LeNeau
Hi Eric, I appreciate the detailed response. However I am still unclear on why performance is incredibly slow. I still (last 2 days) trying up update 7,000 keywords and I am getting a TON of concurrent modification errors. Response to topic #1: I am only sending the destination url to be updat

AdWords API Re: "Cannot serve any requests for the specified account. Please contact support." error message

2010-01-28 Thread ewan
I got this one before. It means there's a problem with the account you're trying to access. It was a declined credit card for the account I was using but it could be other problems. I think you need to log into the account and check for any alerts on it. -- You received this message because yo

AdWords API Re: InforService get Quota Issue

2010-01-28 Thread AdWords API Advisor
Hi Shriny, It looks like you are attempting to make an InfoService request to the AdGroupService. Please ensure you are using the correct WSDL when generating your service. Best, - Eric Koleda, AdWords API Team On Jan 27, 5:24 pm, shriny wrote: > Detailed stacktrace > > javax.xml.ws.soap.SOAPF

AdWords API Re: Couldn't get all keywords

2010-01-28 Thread AdWords API Advisor
Hi James, The RESPONSE_SIZE_LIMIT_EXCEEDED error means that you are trying to request too many keywords at once. You should utilize the paging field on the selector to retrieve the results in pages, and a page size of a couple thousand should keep you under the limit. If you have problems using

AdWords API "Cannot serve any requests for the specified account. Please contact support." error message

2010-01-28 Thread K_V_R
Hi All, While Iam acessing GoogleAdwords api iam getting message "Cannot serve any requests for the specified account. Please contact support." But Iam giving correct application and developer token values which was Approved recently.Is there any process or steps to follow to a

AdWords API Integration old api code with new v2009

2010-01-28 Thread freesystems.t...@gmail.com
Hi, I have integrated google adwords api in my project. I am using php so i have integrated with php ability liverary. So plz suggest me the way to convert my old api code integration to new google api code. Thanks -- You received this message because you are subscribed to the Google Groups "A

AdWords API keyword suggestion tool

2010-01-28 Thread Ajit
Hello All I am trying to create a tool for one of my client, which will suggest keywords. I am planning to use adwords api to pull keywords data. this is what I want to create https://adwords.google.com/select/KeywordToolExternal do you think this can help to generate keyword suggestions? http:/

AdWords API Re: Cost

2010-01-28 Thread Dane
Tried again:b865df60ad04599c5b439702cd1c47b8 -- 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 adwords-api+unsubscr...@googlegro

AdWords API Re: Cost

2010-01-28 Thread Dane
Hi Eric http://schemas.xmlsoap.org/soap/actor/next"; soapenv:mustUnderstand="0" xmlns="https://adwords.google.com/api/ adwords/v13">9dca6ddf7039cd29888a0f9a5dd 2f224 Best, - Dane On Jan 25, 7:31 pm, AdWords API Advisor wrote: > Hi Dane, > > Do you have the SOAP XML logs from this request?  Does