Re: CampaignAdExtensionService.get() - retrieve site links only and nothing else

2012-10-30 Thread Sanju A
Hi Zweitze, For retrieving Only 'SiteLinks' we need set predicate in which field as 'AdExtensionType' and value as 'SITELINKS_EXTENSION' for operator 'EQUALS' and set this predicate to selector and by passing this selector object to get method on 'CampaignAdExtension Service' you will able to

Re: TargetingIdeaService and TrafficEstimatorService problems

2012-10-30 Thread Chirag
Hello all, Any update for SEARCH_VOLUME Data mismatch for Targetting Idea Service? I am able to add multiple keywords. So now only SEARCH_VOLUME is my biggest issue. * * *Thanks, * On Wednesday, October 24, 2012 10:01:30 PM UTC+5:30, Chirag wrote: Yes, I am also facing same issue while adding

Can we get statistic information by using Library or Services, but not XML and Reports?

2012-10-30 Thread Mirror
Hello! Can we get Impressions, clicks, and average position of the group, NOT from the XML report like: // Create report definition XML. $reportDefinition = EOT reportDefinition xmlns=https://adwords.google.com/api/adwords/cm/v201109; selector fieldsAccountDescriptiveName/fields .

cannot get correct cpc for keyword (TrafficEstimator)

2012-10-30 Thread Lena Herrmann
Hey folks, at the moment I'm trying to update the adword-api version from v201109 to the current one. Within my project a call to the TrafficEstimatorService is made to retrieve the cpc values for a given keyword. As normal I compare the cpcs values returned by the api with the values

ReportService keeps failing with The remote server returned an error: (400) Bad Request

2012-10-30 Thread Eric Liu
We received a lot of errors like this from 7am today. Is there something going on? Thanks Eric -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api

API Migration questions

2012-10-30 Thread Roy Roes
Hi, I have some problems understanding the API migration to v201206 I'm currently using v201109_1 with a PHP client library I've read the guide: https://developers.google.com/adwords/api/docs/guides/migration-v201206 Now I'm not sure what to migrate. Do I need a need a new PHP client

Best protection when we use Library?

2012-10-30 Thread Mirror
Hello! Can you advise to organize the best protection? I have developerToken and I use email and pass from google account and get authtoken. After this I erase password from anywhere from server :) I erase values and commented the line in Library auth.ini: ; email = ; password = ;

Re: CampaignAdExtensionService.get() - retrieve site links only and nothing else

2012-10-30 Thread Zweitze
Thank you! Now I get 20 items instead of 5300, much better. I can confirm this works in v201206. Apparently the docs don't know this yet, stating that AdExtension.Type is not filterable. Further, the predicate operator IN works too. BTW... I found out I also need to retrieve all InAppLink

Please communicate api sunset dates

2012-10-30 Thread dan
Hi, I'm not happy with how the v201109 sunset was communicated. My production integration to adwords is not upgraded and is not working. at all. Furthermore, because of the hurricane, I'm not able to update my system. This is not okay. These are the specific issues 1) There are too many

Re: Connection errors during downloads and uploads

2012-10-30 Thread Jeremy Aube
It ended up being an internal issue on our end. We still see these types of errors every now and then, but not with enough frequency at the moment to warrant any additional investigation. On Monday, October 29, 2012 5:48:39 AM UTC-4, Takeshi Hagikura wrote: Hello Jeremy, Are you still

Uncaught SoapFault exception: [soap:Server] [RequestError.INVALID_INPUT @ ; trigger:'v201109']

2012-10-30 Thread Emin Aydan
*Hi; /examples / v201109 / BasicOperations / GetCampaigns.php GetCampaignsExample function (AdWordsUser $ user) - I got the error function. What should I do? Fatal error*: Uncaught SoapFault exception: [soap:Server] [RequestError.INVALID_INPUT @ ; trigger:'v201109'] in

Re: Uncaught SoapFault exception: [soap:Server] [RequestError.INVALID_INPUT @ ; trigger:'v201109']

2012-10-30 Thread Evgeniy Bogdanov
Hi. You need to use latest library version. v201109 is not supported any more as it is outdated. Current API version is v201209 and you can get latest library here https://code.google.com/p/google-api-adwords-php/downloads/list среда, 31 октября 2012 г., 1:42:50 UTC+4 пользователь Emin Aydan

Re: Determine account creation date?

2012-10-30 Thread J
I know this is an old thread, but I'm new to the AdWords API, and I need to know the account creation date as well. In my case, I need to know the account creation date because I'm building a reporting service that queries the CAMPAIGN_PERFORMANCE_REPORT. The algorithm I'm using is to start

Re: the creation date of a campaign to show?

2012-10-30 Thread J
I have the same need to know the account creation date. In my case, I need to know the account creation date because I'm building a reporting service that queries the CAMPAIGN_PERFORMANCE_REPORT (AdHoc reports). The algorithm I'm using is to start with today's date, then query backwards

Re: Best protection when we use Library?

2012-10-30 Thread Anash P. Oommen
Hi, The reason why client libraries allow an auth.ini (or equivalent) is to make the up and running time lower for a new user. However, all libraries provide an additional constructor that allows you to provide these values at runtime, so you don't have to leave anything in your auth.ini. The

Re: API Migration questions

2012-10-30 Thread Anash P. Oommen
Hi Roy, Since you are migrating, my recommendation would be to move to v201209, which is the latest version of the AdWords API. The steps in v201109-v201206 migration guide are valid for v201209 as well, except that you will be making call to a different API version. To answer the rest of

Re: ReportService keeps failing with The remote server returned an error: (400) Bad Request

2012-10-30 Thread Anash P. Oommen
Hi Eric, Please check the full error response from the server (i.e. not just the error code), that will have additional details about why the call failed. Feel free to followup with the error response on this thread and I'll help you out. Cheers, Anash P. Oommen, AdWords API Advisor. On

Re: Can we get statistic information by using Library or Services, but not XML and Reports?

2012-10-30 Thread Anash P. Oommen
Hi Mirror, It is not 100% clear from your email about what your requirements are. Reports is the recommended way to retrieve stats from the AdWords API server, but if it is a question about avoiding xml parsing, then 1. You can use AWQL, so you don't have to construct report definition xml.

Re: GZIPPED_XML report download corrupted in perl 2.7.3 API? v201206

2012-10-30 Thread Anash P. Oommen
Hi Jon, I'll ask the Perl library maintainer to follow up with you over the issue tracker, but from an initial glance, your fix seems correct - gzip is a binary file, so writing it to a utf-8 encoded file will corrupt it. Cheers, Anash P. Oommen, AdWords API Advisor. On Tuesday, 30 October

Re: Why do we need to specify ClientID in auth.ini file??

2012-10-30 Thread Anash P. Oommen
Hi Mirror, It is something like this: $user = new AdWordsUser(); // Load whatever settings is there in auth.ini. $user-SetClientId($_GET[id]); // Set specific values as override. ... $campaignService = $user-GetService('CampaignService', ADWORDS_VERSION); // Get your service, make calls. ...

Re: Why do we need to specify ClientID in auth.ini file??

2012-10-30 Thread Anash P. Oommen
Sorry, it should be $_GET[id] Anash On Wednesday, 31 October 2012 10:47:22 UTC+5:30, Anash P. Oommen wrote: Hi Mirror, It is something like this: $user = new AdWordsUser(); // Load whatever settings is there in auth.ini. $user-SetClientId($_GET[id]); // Set specific values as override.

Re: Get CLients ID from MCC without php client library?

2012-10-30 Thread Anash P. Oommen
Hi Mirror, I'm not very familiar with the SoapClient library that the NoClientLibrary mentions, but behind the scenes, an AdWords API call is a plain HTTP POST to the AdWords API server. Here's a raw message I captured from the .NET client library using Fiddler: POST

Re: QuotaCheckError.ACCOUNT_INACTIVE in all v201206 API calls

2012-10-30 Thread Takeshi Hagikura
Hi Melissa, Are you still seeing the error? If so can you please let us know? Best, - Takeshi 2012年10月29日月曜日 17時27分09秒 UTC+9 Takeshi Hagikura: Hello Melissa, Are you still seeing this error? Can you please send me the request xml? Please make sure that file is sent to only me. Best, -

Re: Keywords Statistics?

2012-10-30 Thread Anash P. Oommen
Hi Oliver, Michelle, Reports is the recommended way to get stats in AdWords API. Cheers, Anash P. Oommen, AdWords API Advisor. On Sunday, 28 October 2012 13:22:59 UTC+5:30, Oliver wrote: I can see them in the AdgroupCriterionService

Re: Modifying the ads using DKI

2012-10-30 Thread Anash P. Oommen
Hi Delisa, You could create an ad with headline like Buy {KeyWord:Chocolate} using AdWords API just like the way you do in AdWords, is that what you are looking for? Cheers, Anash P. Oommen, AdWords API Advisor. On Sunday, 28 October 2012 08:11:50 UTC+5:30, DelisaCeag wrote: When we are

Re: Importing client information into campaign settings:

2012-10-30 Thread Anash P. Oommen
Hi Delisa, That's a very broad question, so if you can ask specifics, I can help you out. But to give you an idea, you would create Campaigns using CampaignService ( https://developers.google.com/adwords/api/docs/reference/latest/CampaignService). You would create budgets using BudgetService