CLI for Google AdWords reporting using AWQL.
###Installation One-line install
$ sudo npm install gawr -g
Upon first run you would be asked for your credentials.
The app is using OAuth 2.0 to access the Google AdWords API.
You will have to registrer the app here Google Developers Console. Please specify http://localhost:3000 as Redirect URIs.
###Usage
####Getting report To get a report just type the following in a terminal
$ gawr "SELECT Id, Name, Clicks FROM CAMPAIGN_PERFORMANCE_REPORT DURING 20131010,20131012"
To specify the output format type
$ gawr --format TSV "SELECT Id, Name, Clicks FROM CAMPAIGN_PERFORMANCE_REPORT DURING 20131010,20131012"
To read from standard input use
$ gawr -
To specify another client customer id than the one in the config file
$ gawr --customerId "123-456-7890" "SELECT Id, Name, Clicks FROM CAMPAIGN_PERFORMANCE_REPORT DURING 20131010,20131012"
###License
MIT