Re: Downloading reports with an MCC login - ReportDefinitionError.INVALID_REPORT_DEFINITION_ID@selector.selector???

2011-07-28 Thread GemBox Software
Hi, you should use either clientEmail or clientCustomerId, not both. Also, clientEmail should be client email not MCC account email. For Reporting Basicspage here is how raw HTTP message should look like: GET /api/adwor

Re: I NEED A PROGRAMMER WITH EXPERIENCE WITH GOOGLE ADWORDS API

2011-07-13 Thread GemBox Software
Hi, Would you like to retrieve traffic estimates and keyword statistics with AdWords API or by scraping HTML returned from AdWords Traffic Estimator and Keyword Tool web interfaces? I am guessing you would like to do it by scraping method because you mention DeathByCaptcha.com's API for Captcha So

Re: Re: Get all Adgroups without a certain keyword?

2011-06-17 Thread GemBox Software
Well, after you get ad group IDs with above method, and remove duplicates (if they exist), you should call AdGroupService.get method to retrieve all ad groups. AdGroups that don't have a certain keyword are those from AdGroupService.get method whose ID is not retrieved with above method. On Thu, J

Re: multiple targetingIdeaService requests error

2011-06-07 Thread GemBox Software
Hi, you are requesting authToken from ClientLogin service too many times, that is way you get 'CaptchaRequired'. Request authToken just for the first time, and then cache it for subsequent requests. On Mon, Jun 6, 2011 at 12:27 PM, v wrote: > I am using targetingIdeaService GetRelatedKeywords.

Re: upgradation of api version from v13 to v201101

2011-06-01 Thread GemBox Software
Hi, reporting in newer versions is completely different than in v13. Reports are generates synchronously and new service with different data types is used: ReportDefinitionService . For more details about repo

Re: Manage multiple client accounts

2011-05-31 Thread GemBox Software
Thanks for your reply. But please also tell me how can I fetch all the > added clients in my mcc account. > > On May 27, 1:37 pm, GemBox Software wrote: > > Hi, > > > > please see DotNet client Wiki How to use > > AdWordsUser< > http://code.google.com/p/google-api-

Re: What does AuthenticationError.CLIENT_EMAIL_INVALID mean in Sandbox account?

2011-05-30 Thread GemBox Software
Hi, your first call to the new sandbox account should be 'get' operation from CampaignService. This initial call to the sandbox creates an MCC sandbox account, along with five client accounts, for the email address you specified. For details see: Sandbox getting started

Re: How can I retrieve every fields by a generic selector (v201101) ?

2011-05-30 Thread GemBox Software
Hi, yes, you need to set all fields in the selector. I think the API team should change this behavior a little bit. Perhaps include bool field in the selector called 'selectAllFields' or when fields in the selector are empty or null, return all fields. On Mon, May 30, 2011 at 2:18 PM, yusawai wr

Re: Get all Adgroups without a certain keyword?

2011-05-30 Thread GemBox Software
Hi, you can do this with AdGroupCriterionService get method. Selector should look something like this (in pseudocode): var selector = new Selector() { fields = new string[] { "AdGroupId" }, predicates = new Predicate[] { new Predicate() { field = "CriterionUse",

Re: Manage multiple client accounts

2011-05-27 Thread GemBox Software
Hi, please see DotNet client Wiki How to use AdWordsUser . On Wed, May 25, 2011 at 1:55 PM, himan...@ranosys.com wrote: > Hi, > > I am working on adwords API and performing operations like report > fetch and pause opera

Re: TargetingIdeaService - IdeaTextMatchesSearchParameter filters all results out with "included" on Sandbox

2011-05-27 Thread GemBox Software
Hi, are you sure that you are using sandbox environment? Because in Sandbox Behaviordocument it writes that returned ideas will be of the form {"sample keyword 0", "sample keyword 1", ...}. Returned attributes will contain random val

Re: How do Adparams works in Google Adwords PHP api

2011-05-27 Thread GemBox Software
like sandbox for testing > purpose. since all my Ads are now only in sandbox. > > Thanks. > > > On May 23, 7:40 pm, GemBox Software wrote: > > Hi, > > > > this is probably not relevant to your question but text ad headline > cannot > > contain e

Re: v201101 Cross-client report download problem

2011-05-27 Thread GemBox Software
Hi, MCC reports is still under development and is subject to change. Future release of this feature will be announced on the Adwords API Blog . On Fri, May 27, 2011 at 9:32 AM, Dmitriy wrote: > Hello. > > When I try to download created cross-client report using

Re: Trying to set up API for adwords and Have authentication questions

2011-05-26 Thread GemBox Software
Hi, you need MCC account to access AdWords API production servers. When you signup for an MCC account and get approved for AdWords API access, you will get developer token - unique text string of letters, numbers and symbols that is your key to accessing the API. For more info see: How do I begi

Re: Selector Fields

2011-05-26 Thread GemBox Software
I am afraid there is no such function. Actually, there is only one - ReportDefinitionService.getReportFields . If you are only looking for fields that should be used while migrating code from pr

Re: Campaign Performance Report: Call Metrics

2011-05-25 Thread GemBox Software
Hi, you can find more info in these pages: http://code.google.com/apis/adwords/forum.html?place=msg%2Fadwords-api%2FGGxRxKrFp4w%2FzALKbUtEOSAJ http://www.google.com/support/forum/p/AdWords/thread?tid=6fa5b8d9ddc36997&hl=en On Wed, May 25, 2011 at 3:23 PM, Reed wrote: > Any update on this probl

Re: How to find a specific campaign?

2011-05-25 Thread GemBox Software
Hi, if you are using latest AdWords API v201101 then you can use predicatesin your selector so that only campaign with specific name is returned, like this: var selector = new Selector() { fields = new str

Re: How do Adparams works in Google Adwords PHP api

2011-05-23 Thread GemBox Software
I forgot to tell that you can test your ads (with included AdParams) with Ad Preview Tool in AdWords web interface. Also, you should check out Keyword Insertion to parametrize your ads even further. On Mon, May 23, 2011 at 4:40 PM, GemBox Software wrote: > Hi, > > this is probably not

Re: How do Adparams works in Google Adwords PHP api

2011-05-23 Thread GemBox Software
Hi, this is probably not relevant to your question but text ad headline cannot contain exclamation point '!'. See AdWords Punctuation and symbols . AdParam is identified by the ad group and keyword because you need some trigg

Re: Ruby + Savon

2011-05-20 Thread GemBox Software
Hi, looks like your are using v201008 CampaignSelector in v201101 CampaignService that uses generic selectors. For new selectors please see Selector Migration Reference . Your XML should look something like this: http://schemas.xmlsoa

Re: v201101 Campaign performance report summary/aggregation

2011-05-20 Thread GemBox Software
Hi, ReportDefinitionService uses aggregation type Summary by default. If you want other type of aggregation, you can do it by adding one of the following fields to report definition: Date, DayOfWeek, Week, Month, Quarter, Year. Here is more info about Report Migration

Re: attach an adGroup to a remarketing audience (conversion tracker) group with v201101

2011-05-20 Thread GemBox Software
Hi, to associate AdGroup with remarketing audience, I think, you should use AdGroupCriterionService and add new criterion of type CriterionUserListto the AdGroup. On Thu, May 19, 2011 at 5:47

Re: Recent changes to API?

2011-05-20 Thread GemBox Software
Hi, There is a different behavior between v201008 and v201101. TargetingIdeaService in v201101 doesn't return seed keywords if request type is IDEAS. Here is more info about TargetingIdeaService v201101 doesn't return seed keywords

Re: CampaignTargetOperation

2011-05-19 Thread GemBox Software
Obviously there is some upper limit because TargetError.Reason contains value TOO_MANY_TARGETED_LOCATIONSbut that limit is not publicly documented in AdWords API. I

Re: How to detect ad group ads whose status is Site Suspended

2011-05-19 Thread GemBox Software
Hi, maybe you could try with Ad.approvalStatus . On Wed, May 18, 2011 at 7:36 PM, Kevin wrote: > Hi, > > The status of some of our ads show up on the AdWords UI as "Site > Suspended", but the stat

Re: Thoughts on v201101

2011-05-19 Thread GemBox Software
I think new Selector is great because it provides unified interface for 'Get' operation over many services. Because it is used by many services, it cannot be more strongly typed. I like the idea from TargetingIdeaSelector which uses AttributeType array as input and Type_AttributeMapEntry array (a

Re: How do we access MCC accounts that are not assigned a clientEmail

2011-05-17 Thread GemBox Software
Hi, I forgot that cross client reporting is not yet enabled in v201101 so my solution wouldn't work for you because you don't have any way to identify your client account (client email is missing and client id is unknown). On Tue, May 17, 2011 at 10:57 AM, GemBox Software wrote: &g

Re: How do we access MCC accounts that are not assigned a clientEmail

2011-05-17 Thread GemBox Software
Hi, it looks to me that only workaround is to use ReportDefinitionService and download Account Performance Reportthat includes currency code and customer id. On Mon, May 16, 2011 at 1:46 PM, Marcin Czepinski < marcin.czepin..

Re: API script broken after expired but replaced CC

2011-05-17 Thread GemBox Software
Hi, There is a different behavior between v201008 and v201101. TargetingIdeaService in v201101 doesn't return seed keywords if request type is IDEAS. Here is more info about TargetingIdeaService v201101 doesn't return seed keywords

Re: Whats up with AdParamService???

2011-05-17 Thread GemBox Software
Hi, make sure that your text ads are not too long with inserted ad parameter. Here is how much text can a text ad have . On Mon, May 16, 2011 at 12:09 PM, Pearl Jam wrote: > Hi, > we have a problem with our AdParams. We have u

Re: Keywords not returned in GetRelatedKeywords.php

2011-05-16 Thread GemBox Software
Hi, if you are requesting new keyword ideas (RequestType.IDEAS) then it is not guaranteed that return keywords ideas will be in such order that seed keywords come first. If you really want new keywords ideas, then you actually don't know the number of actual results so the best thing to do is to s

Re: CustomerSyncService: RateExceededError exception thrown

2011-05-16 Thread GemBox Software
Hi, you should read this blog post about RateExceededErrorthat explains it in detail. On Fri, May 13, 2011 at 8:31 PM, bgraves wrote: > I am currently following Google's recommendation for handling the the > TOO_MA

Re: How to get Local Monthly Searched

2011-05-13 Thread GemBox Software
Hi, I don't think you need this line of code: $languageService->TargetType='en'; In the description of Type_AttributeMapEntryit is written that AVERAGE_TARGETED_MONTHLY_SEARCHES, GLOBAL_MO

Re: Get top 3 ranking URLs for a specific keyword

2011-05-12 Thread GemBox Software
be achieve using other google api? > Thank you > > On May 12, 12:59 pm, GemBox Software wrote: > > I don't believe this is possible. > > > > You can get average position of your ads with AdWords API, but I don't > think >

Re: Get top 3 ranking URLs for a specific keyword

2011-05-12 Thread GemBox Software
I don't believe this is possible. You can get average position of your ads with AdWords API, but I don't think you can get top 3 ads for specific keyword. -- GemBox.Ppc www.GemBoxSoftware.com/Ppc/Overview.htm Advanced AdWords API for C# / VB.NET -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Re: API Approval Process Over 1 Month?

2011-05-11 Thread GemBox Software
Hi, from this page http://code.google.com/apis/adwords/forum.html?place=msg%2Fadwords-api%2FzHZerKzRz-8%2FyvjN-V0qWJkJyou can contact AdWords API representative to escalate the review process for you. -- GemBox.Ppc www.GemBoxSoftware.com/Ppc/Overview.htm Advanced AdWords API for C# / VB.NET -

Re: How can I use sandbox ? Adwords .Net API

2011-05-11 Thread GemBox Software
Hi, just to warn you, sandbox environment returns dummy data for TargetingIdeaService. See this . Also sandbox environment has different limits, although this is not documented, here is one limitation that is mentioned here http:/

Re: Does API provide info on ad position, location, and time for a keyword?

2011-05-11 Thread GemBox Software
Hi, you can use TrafficEstimatorServiceto find out averageCpc, *averagePosition*, clicksPerDay and totalCost. See StatsEstimate