Re: How to get a list of campaigns?

2015-09-17 Thread Brett Baggott
Adwords API Getting Started: https://developers.google.com/adwords/api/docs/guides/start?hl=en Adwords API PHP Client Library Getting Started: https://github.com/googleads/googleads-php-lib On Thursday, September 17, 2015 at 4:33:05 AM UTC-5, Сергей Пшеничный wrote: > > Hi! Help after link your

Re: Clarity on AdWords API Use

2015-09-17 Thread Brett Baggott
There are provisions for allowing others access to your API credentials but this is usually done for employees of your company. It doesn't sound like that's what's going on here. I think your instincts on this are right. Having said that, were he an employee or contractor, and I wanted to do wh

Anash Oommen at PubCon 2015

2015-09-14 Thread Brett Baggott
I was resolved to the fact that I'd miss this year's PubCon due to family obligations. However, now that I know Anash Oommen himself is going to be there, I'm really bummed. Those that can go should definitely take advantage. PubCon is the only "gotta go if possible" conference for me. Full dis

Re: How to get Keyword-level Biddingstrategies and MaxCPC with Keyword Performance Report

2015-06-26 Thread Brett Baggott
data being returned, so I'd like to see your > request to see what went wrong. If you have an ad group ID that produced > this error, that would be helpful as well. > > Thanks, > Josh, AdWords API Team > > On Friday, June 26, 2015 at 4:39:36 PM UTC-4, Brett Baggot

Re: How to get Keyword-level Biddingstrategies and MaxCPC with Keyword Performance Report

2015-06-26 Thread Brett Baggott
Josh, disregard my earlier post. I just realized that I was using the Criteria Performance Report, which does not include any of the BiddingStrategy fields. In the words of Gilda Radner/Emily Litella... Nevermind. On Friday, June 26, 2015 at 3:00:56 PM UTC-5, Josh Radcliff (AdWords API Team) w

Re: How to get Keyword-level Biddingstrategies and MaxCPC with Keyword Performance Report

2015-06-26 Thread Brett Baggott
Josh, I happened to be doing some coding on the Keyword Performance Report while reading this post and I attempted to get exactly the information requested by Orangevn, thinking it wouldn't be a big deal. I was surprised to find that BiddingStrategyId, BiddingStrategyName, and BiddingStrategyTy

Re: Simple Questions about the OAuth2 access_token and Redirect URI

2013-09-05 Thread Brett Baggott
Alan, here's a link to Google's official explanation of the different types of projects. I suggest that, instead of thinking of these different project types in relation to what _your_ application is, think of them in relation

Re: Google APIs Console. Web or Installed applications?

2013-09-05 Thread Brett Baggott
Alan, I suggest that, at least for your testing, you specify an "Installed" application, even though you may be developing a web application. The reason I suggest this is because you're going through the GetRefreshToken.php process which is intended to provide you with an Access Token that has

Re: Trying to get clientCustomerId

2013-09-04 Thread Brett Baggott
Yes, it is true. At least that is the error I got when I tried to access anything other than my test account until my Developer Token was completely approved. On Wednesday, September 4, 2013 8:06:59 AM UTC-5, larisa bolgova wrote: > > > > On Monday, September 2, 2013 11:44:14 AM UTC+3, Takeshi H

Re: Is IN operator working like an OR for the status field?

2013-09-04 Thread Brett Baggott
Stephane, try this instead: Predicate predicate = new Predicate(); predicate.field = "Status"; predicate.@operator = PredicateOperator.IN; predicate.values = new string[] {"ACTIVE", "PAUSED"}; selector.predicates = new Predicate[] {predicate}; I think the problem might be in how you have delimit

Re: Global Average Position for Filtered Campaign Report

2013-09-04 Thread Brett Baggott
filter on the > campaign name. > > In short, we want to get the 1.9 of the attached file. ie. the overall > avg. position for the query, not all rows with every specific avg. position. > > Any idea is welcome! > > Thanks, > > Stéphane > > > > On Wednesday,

Re: Global Average Position for Filtered Campaign Report

2013-09-04 Thread Brett Baggott
I think this article will help: http://searchenginewatch.com/article/2257046/Say-Goodbye-to-AdWords-Average-Position-Hello-to-Top-of-Page-Rate I think the problem here is that you are assuming that "sum all the above and divide by 15" is the correct math. I don't think it is. On Wednesday, Sept

Re: Generate URL pointing to Adwords user interface

2013-09-04 Thread Brett Baggott
I've just looked all through the Adwords API reference and I don't see any support for this type of information. I've looked at the Adwords user interface and I don't see any "hackable" URL's (for example, when you click on an Ad Group, it doesn't go to a URL with a parameter for AdGroupId=123.

Re: Creating site links with description

2013-09-04 Thread Brett Baggott
I just modified the .NET Client Library example to include support for Line 2 and Line 3 using the FeedMappingService and I encountered the same error. I don't think they have added support for Line 2 and Line 3 into the API yet. On Wednesday, September 4, 2013 10:40:02 AM UTC-5, Mariusz wrote:

Re: Completed OAuth2 setup but still being asked for email and password pair

2013-09-04 Thread Brett Baggott
Credentials are incorrect. Please see the GetRefreshToken.php > example. access_token required. > > Cheers! The saga continues. > > On Wednesday, September 4, 2013 5:56:40 PM UTC+1, Brett Baggott wrote: >> >> Alan, I'm not a PHP dev but I've taken a look at

Re: Completed OAuth2 setup but still being asked for email and password pair

2013-09-04 Thread Brett Baggott
Alan, I'm not a PHP dev but I've taken a look at the PHP Client Library and it _seems_ you've gone through the right steps. I can't imagine why you'd get the email null error using OAuth2 verification if you've gone through the steps to get a valid refresh token. Maybe this would happen if the

Re: Get list of all clients

2013-09-03 Thread Brett Baggott
I'm using OAuth2 authorization so I'm not 100% sure this will work for you but I think you need to drop the line about the customerService.RequestHeader and set the Client ID for the account you want to get the account list for by using: config.ClientCustomerId = "111-222-" I just tried th

Re: Best practice for making sure your local API data is up to date with live Adwords data

2013-09-03 Thread Brett Baggott
On Tuesday, September 3, 2013 4:45:52 PM UTC-5, Brett Baggott wrote: > > I'm just getting started with accessing our Adwords account information > via the API. One of the most basic functions I'm trying to get right is > making sure my local data I'm basing my API upd