Re: ReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT', Trigger = 'Cannot select a combination of

2014-11-11 Thread Sage Lewis
Thank you so much for your speedy answer here. In fear of even mentioning it, EstimatedTotalConversions and ClickType are required minimum functionality. I know you can't comment on that. But because that's the case is there any possibility that down the road EstimatedTotalConversions and Clic

ReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT', Trigger = 'Cannot select a combination of

2014-11-11 Thread Sage Lewis
I'm working on setting up a campaign performance report with these fields: 'CampaignName','Impressions','Clicks', 'AverageCpc', 'AveragePosition', 'ConversionRate', 'Conversions', 'EstimatedTotalConversions', 'Cost', 'AdNetworkType1', 'Device', 'ClickType' When I add 'ClickType' I get this error

Re: The Moron’s Guide to Setting Up Google AdWords API

2014-10-08 Thread Sage Lewis
> > Thanks! >> > I just had it in my head and I thought I'd write it down. Maybe it will be useful to someone. :) -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers

Re: Send report format .html

2014-09-29 Thread Sage Lewis
> > That's easy for you to say :) >> > I'm still pretty new to parsing csv files. But I am getting closer. I'll keep working on that. Thanks for your help! -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ htt

Re: Going from Command Line to Creating Web-based tools

2014-09-29 Thread Sage Lewis
> > Cool. >> > Thanks! -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because yo

The Moron’s Guide to Setting Up Google AdWords API

2014-09-29 Thread Sage Lewis
I am very new to the whole API setup process. But I have had a lot of luck getting started with the help of this forum and the Developers Guide. I thought I'd document my journey for anyone who is new to programming and API's. It's here: http://www.sagerock.com/blog/setting-google-adwords-api

Re: Send report format .html

2014-09-28 Thread Sage Lewis
I'm successfully creating a csv file for my report and displaying it in html format with this code: \n\n"; $f = fopen("report.csv", "r"); while (($line = fgetcsv($f)) !== false) { echo ""; foreach ($line as $cell) { echo "" . htmlspecialchars($cell) . ""; }

Re: Going from Command Line to Creating Web-based tools

2014-09-27 Thread Sage Lewis
So I found that if I commented this out: // Don't run the example if the file is being included. //if (__FILE__ != realpath($_SERVER['PHP_SELF'])) { // return; //} the script runs in the browser. My question now is: do I need this? I'm running XAMPP on Windows 7. Thanks! Sage -- -- =~=~=~

Re: GetCampaigns.php working in Command line but not not in browser

2014-09-27 Thread Sage Lewis
Commenting out these lines instantly made my script run in a browser. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Re: Going from Command Line to Creating Web-based tools

2014-09-25 Thread Sage Lewis
oogleads-php-lib/blob/master/examples/AdWords/v201406/Reporting/GetReportFields.php > > into your index.php and modify the printf calls such that they print out > html tags instead of plain text. > > Cheers, > Anash P. Oommen, > AdWords API Advisor. > > On Wednesday

Re: RefreshToken Showing blank page

2014-09-24 Thread Sage Lewis
I struggled with this for like ever. Then I realized that I needed to run php from the command line and not a web browser. Once I did that I was able to break past this error. I'm not sure that's your problem or not. But it was my issue for some time. On Saturday, September 13, 2014 2:03:18 AM

Re: Error: Invalid_client No Application Name while running GetRefreshToken.php

2014-09-24 Thread Sage Lewis
Did you add a "Product Name" in the "Consent screen" of Google Developers Console? I got that error too until I added a Product Name. On Tuesday, September 23, 2014 8:51:40 AM UTC-4, Kiran Kumar wrote: > > Hi, > > I have entered all the credentials in auth.ini file except refresh > token.When

Re: PHP Client Library : Problem to use API Adsword

2014-09-24 Thread Sage Lewis
As a person who is VERY new to this world this was definitely a hurdle for me. I set up XAMPP on my pc at home. It installed php and all the necessary stuff right out of the box. But what I didn't realize was just what was said below. You must run these examples all from the command line. So i

Going from Command Line to Creating Web-based tools

2014-09-24 Thread Sage Lewis
First, I want to thank you all for your contributions here. Because of you all I now have successfully run GetRefreshToken.php and GetReportFields.php both from the command line. If you knew me you would think that's a miracle in and of itself. But now I'm curious about going to the next stage.

Re: Sandbox MCC GetCampaigns Not Generating Test ClientCustomerId Values

2012-07-31 Thread Sage Lewis
he inconvenience. > > - Kevin Winter > AdWords API Team > > On Monday, July 30, 2012 10:33:41 PM UTC-4, Sage Lewis wrote: >> >> So just to confirm, setting up sandbox accounts is not possible at the >> moment?

Re: API developer token taking crazy long

2012-07-31 Thread Sage Lewis
Hi Kevin, I thought I might try checking on our applications as well. Customer ID: 262-838-3728 It's been a few months for us. Thank you for your help here. Sage On Thursday, May 3, 2012 2:45:07 PM UTC-4, Kevin Winter wrote: > > Hi Maarten, > The review process currently takes a while, due

Re: Sandbox MCC GetCampaigns Not Generating Test ClientCustomerId Values

2012-07-30 Thread Sage Lewis
So just to confirm, setting up sandbox accounts is not possible at the moment? Knowing that will help me from going insane :) -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords

Re: @kevin >> sandbox account initialization logic didn't properly initialize accounts (and assigned them zeros).

2012-07-30 Thread Sage Lewis
For the record, I believe this is my issue too. I'm using Ewan Heming's sandbox script and am getting this error: Customer ID: 0 Customer ID: 0 Customer ID: 0 Customer ID: 0 Customer ID: 0 Fatal error: Uncaught SoapFault exception: [soap:Server] [AuthorizationError.USER_PERMISSION_DENIED @ ] i