Re: AuthenticationError.USER_ID_INVALID

2013-12-17 Thread Mohammed Nasri
Hi, Thank you for your answer. I can run it now. The mistake I've done is that I followed the guidlines from Reporting Basicshttps://developers.google.com/adwords/api/docs/guides/reportingin the online developper guide, but I understand now that is for adHoc reports only. For standard

Re: How can I modify the bid for and AdGroup keyword?

2013-12-17 Thread varta convonix
Hi Jaison, Below code snippet will work for keywords under a specific adgroup (ADGROUP_NAME) var adgroup = AdWordsApp.adGroups().withCondition(Name = ' + ADGROUP_NAME + ').get().next(); var keywordIter = adgroup.keywords().get(); while (keywordIter.hasNext()) { var keyword =

Problem with get refresh_token using GetRefreshToken.php

2013-12-17 Thread office
Hi there! I have problem with get refresh_token using GetRefreshToken.php. I have followed the instructions about getting an OAuth 2.0 refresh_token. I have the client_id, client_secret both of which have been placed into the src/Google/Api/Ads/Adword/auth.ini file. Than I ran

Keyword Performance Report segmented by Date: maxCPC bid changes not reported

2013-12-17 Thread Christian Borck
Hi everybody, I was wondering, why the maxCPC isn't reported historically (i.e. the bid changes)? When I generate a Keyword Performance Report segmented by Date for one month, I see statistics for every keyword. As I am interested in investigating the gap between maxCPC and avgCPC, I need to

Re: Is it possible to get 'Display Network only' through the keywords performance report?

2013-12-17 Thread Rakesh Ramesh
Hello, I was pulling the Display_keyword_report from API, from some reason I couldn't retrieve the data from analytics using the keyword ID. I was trying to map keyword ID from the display keyword report and keyword ID from analytics. Can the display kwd report mapped with Analytics keyword

Combine Managed and Automated placements reports

2013-12-17 Thread Rakesh Ramesh
Hello, Is there a way we get managed placements reports through API as it show in the API report Docs This report is deprecated. https://developers.google.com/adwords/api/docs/appendix/reports#managed-placements and is there a ID the unique for placements? Thanks, Rakesh. -- --

Re: API v201309 CampaignService selector fields SelectorError.INVALID_FIELD_NAME

2013-12-17 Thread Leny
Thank you Josh for the follow up. I have a list for each sevice, could you please also have a look ? Regards. *AdGroupService: CpcBidSource, CpmBidSource, EnhancedCpcEnabled, ExperimentRowStatus, PageOnePromotedBidCeiling PageOnePromotedBidChangesForRaisesOnly, PageOnePromotedBidModifier,

update keyword bid using php v201309

2013-12-17 Thread Bill Smith
Hi- I'm sure I'm missing something obvious but I've been going around in circles on this one for awhile. What I am trying to do is update the max cpc bid on a keyword. My code use to work in previous version of adwords, but the newest library the syntax has changed and I can't seem to figure

Keyword Performance Report: maxCPC / Bid change history not reported?

2013-12-17 Thread Christian Borck
Hi everyone, i was wondering if the bid changes are not reported within the API? I generated a Keyword Performance Report for the last 30 days segmented by Date, inlcuding maxCPC. However, only the last Update of maxCPC is reported. Is there a way to get the change history? That is, what

Re: Service account via Java client getting access_denied

2013-12-17 Thread leighton
Why not actually answer the original questions instead of deflecting? Why offer a service and then tell people not to use it? On Thursday, August 29, 2013 9:22:05 AM UTC-7, Takeshi Hagikura (AdWords API Team) wrote: Hi, First, does your application needs impersonation? If all you want to

Re: [EntityNotFound.INVALID_ID @ operations[0].operand.budget.budgetId; trigger:'BudgetId: 139952340']

2013-12-17 Thread Burak Yavuzer
I will update the campaign budget, for example, Can you give me a code.s 9 Aralık 2013 Pazartesi 17:07:32 UTC+2 tarihinde Burak Yavuzer yazdı: Hi, I am getting error while trying to update the campaign budget.s Please help me in this matter. The code example below; BudgetService

Re: How can I modify the bid for and AdGroup keyword?

2013-12-17 Thread Anash P. Oommen (AdWords API Team)
Hi Jaison, You need to use AdGroupCriterionService. See https://code.google.com/p/google-api-adwords-dotnet/source/browse/examples/adwords/CSharp/v201309/BasicOperations/UpdateKeyword.cs for a C# example. Varta's approach works too, if you are using AdWords Scripts instead of AdWords API. If

Re: Junk characters in 'Dynamic ad target' column in Criteria Performance report

2013-12-17 Thread Anash P. Oommen (AdWords API Team)
Hi Shobha, I think you are not reading the files with the right text encoding. Reports are UTF-8 encoded, so interpreting the text as utf-8 encoded might solve your problem. Cheers, Anash P. Oommen, AdWords API Advisor. On Tuesday, December 17, 2013 2:32:59 AM UTC-5, shobha.p...@gmail.com

Re: PLACEHOLDER_FEED_ITEM_REPORT comes up empty for a test account

2013-12-17 Thread Anash P. Oommen (AdWords API Team)
Hi Slava, What report definition are you using? Could you post it on this thread? Cheers, Anash P. Oommen, AdWords API Advisor. On Monday, December 16, 2013 6:54:11 PM UTC-5, Slava wrote: I used to get both Approved and Disapproved sitelinks from a test account. Now the

Re: Commandline reporting tool

2013-12-17 Thread Anash P. Oommen (AdWords API Team)
Hi Rasmus, That's a pretty useful script. I've heard a few users asking for one, but it's the first time I'm seeing a user write one and contribute to the community. Thanks a lot! One of my colleagues was experimenting with AdWords API on Node.js, I'll ask him to take a look and reach out to

Re: Adgroup Bid

2013-12-17 Thread Anash P. Oommen (AdWords API Team)
Hi Yilmaz, You have to use AdGroupService. https://developers.google.com/adwords/api/docs/reference/v201309/AdGroupService. You can refer to https://code.google.com/p/google-api-ads-java/source/browse/examples/adwords_axis/src/main/java/adwords/axis/v201309/basicoperations/AddAdGroups.java

Re: 'devicePreference' not working/query..

2013-12-17 Thread Anash P. Oommen (AdWords API Team)
Hi Tom, DevicePreference works only for high end mobile devices, so the ID you should send to server is 30001. If you don't want your ads to have any mobile preference, you needn't provide any devicePreference field. Cheers, Anash P. Oommen, AdWords API Advisor. On Monday, December 16, 2013

Re: Getting Stats from Ad Hoc Reports

2013-12-17 Thread Anash P. Oommen (AdWords API Team)
Hi Eric, - You could run reports as frequently as you want. If you include HourOfDay as a column, you will get stats broken down by hours. That applies for any report that provides HourOfDay as a column. - The C# .NET client library uses adhoc reports, we provide you with a ReportDefinition

Re: Getting INVALID_AUTH_TOKEN_FOR_EMAI while using LocationSyncService

2013-12-17 Thread Anash P. Oommen (AdWords API Team)
Hi Shobha, I think email is case-sensitive, could you make sure it matches exactly what it shows on the AdWords UI? Cheers, Anash P. Oommen, AdWords API Advisor. On Monday, December 16, 2013 5:11:41 AM UTC-5, shobha.p...@gmail.com wrote: Hi Adwords Team, We are trying to use

Re: min daily budget setup

2013-12-17 Thread Anash P. Oommen (AdWords API Team)
Hi, If the AdWords UI allows this, then API would allow this too. However, serving the ad will most likely be a problem; I suspect that if your daily budget is less than max bid, then AdWords won't serve your ads. You could ask on the product forum

Re: Getting Stats from Ad Hoc Reports

2013-12-17 Thread road11
Anash, Thank you for your response. However, the Keyword_Performance_Report doesn't appear to have an HourOfDay field. That's the report we'd need in order to get stats broken down by keyword. Any chance you could put that functionality into the Keyword Performance Report? Eric On Tuesday,

Re: How can I modify the bid for and AdGroup keyword?

2013-12-17 Thread Bill Smith
Is there a similar example for php using v201309? I haven't been able to find it. Thanks, Bill On Tuesday, December 17, 2013 7:23:31 AM UTC-6, Anash P. Oommen (AdWords API Team) wrote: Hi Jaison, You need to use AdGroupCriterionService. See

Re: Getting Stats from Ad Hoc Reports

2013-12-17 Thread road11
Anesh, I just tried HourOfDay in the Criteria Performance report you mentioned. It's not there either. Can we get HourOfDay in these reports? If not, how can we break down our impressions and clicks by the hour? Eric On Tuesday, December 17, 2013 9:19:11 AM UTC-5, Anash P. Oommen (AdWords

Re: Webpage Target

2013-12-17 Thread Kevin
It also appears that AdGroupCriterionService.get() doesn't return webpage criteria unless I include CriteriaType of WEBPAGE as one of the predicates in the selector. On Wednesday, November 20, 2013 12:57:21 PM UTC-8, Josh Radcliff (AdWords API Team) wrote: Hi, The reporting

Re: PLACEHOLDER_FEED_ITEM_REPORT comes up empty for a test account

2013-12-17 Thread Slava
reportDefinition xmlns=https://adwords.google.com/api/adwords/cm/v201306; selector fieldsAccountDescriptiveName/fields fieldsAttributeValues/fields fieldsDevicePreference/fields fieldsFeedId/fields fieldsFeedItemId/fields fieldsStatus/fields fieldsValidationDetails/fields /selector

Re: min daily budget setup

2013-12-17 Thread ssAdword
also, is there a way for me to buy on a CPM basis? In that case, it seems that we will not run into max bid vs. budget scenario Thoughts? On Tuesday, December 17, 2013 10:32:36 AM UTC-8, ssAdword wrote: Thank you Anash. using shared budget might make my original objective obsolete

Re: Does PLACEHOLDER_FEED_ITEM_REPORT support zero impression rows?

2013-12-17 Thread Slava
Anyone? On Monday, December 16, 2013 3:46:48 PM UTC-8, Slava wrote: I am only getting rows with ApprovalStatus being Approved' and Approved (limited). None of the disapproved sitelinks are coming though. Thanks, Slava -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find

Re: BetaError.BETA_FEATURE while adding locations for Campaign

2013-12-17 Thread Gopi
Thank you Takeshi. On Monday, December 16, 2013 8:35:55 PM UTC-8, Takeshi Hagikura (AdWords API Team) wrote: Hi Gopi, Please see another threadhttps://groups.google.com/d/msg/adwords-api/pBBcApAjlnE/mDzt-7Rvx5MJ. It's a expected behavior. Best, - Takeshi, AdWords API Team On

Re: Placement performance report returns no data

2013-12-17 Thread Pierre-Luc Soucy
Hi Danial, Thanks for looking into this. I just checked again and I can see 678 placements for campaign #8370 in the Adwords web interface at https://adwords.google.com/cm/CampaignMgmt?__u=5463865219__c=4325059290syncServiceIdentity=true#c.8370.dtapp=cm(date range: 2012-01-01 to

Re: min daily budget setup

2013-12-17 Thread ssAdword
Thank you Anash. using shared budget might make my original objective obsolete which is providing fair amount of clicks to each campaign. I wonder if run ads at different times so that each campaign has enough budget at a given time and I don't have to increase the overall budget. if we go

Re: Error - Reflection is not allowed on private - App Engine

2013-12-17 Thread Takeshi Hagikura (AdWords API Team)
Hi Andres, Apologies for the delay. At least I got it to work to call the AdWords API services (CampaignService) with the dependencies in the same pom.xmlhttps://code.google.com/p/google-api-ads-java/source/browse/pom.xml?repo=dfp-playground as DfpPlayground + adwords-appengine dependency.

Re: Maven configuration problem App Engine to connect with Adwords Api

2013-12-17 Thread Takeshi Hagikura (AdWords API Team)
Hi Mario, I think it's related to this threadhttps://groups.google.com/d/msg/adwords-api/ciSRh-74rAU/ED2jxjyItVkJ . Follow the dfp playgroundhttps://code.google.com/p/google-api-ads-java/source/browse/pom.xml?repo=dfp-playgroundis the good start for AdWords on appengine. Best, - Takeshi,

Re: Getting INVALID_AUTH_TOKEN_FOR_EMAI while using LocationSyncService

2013-12-17 Thread Shobha Procentris
Anash, The email Id used is exactly the same as used in Adwords UI. Thanks, Shobha On Wed, Dec 18, 2013 at 11:56 AM, Shobha Procentris shobha.procent...@gmail.com wrote: Anash, The email Id used is exactly the same as used in Adwords API. Thanks, Shobha On Tue, Dec 17, 2013 at 7:52