google-adwords
A Node.js driver for Google Adwords Reporting API (v201409)
Contents
Install
To install google-adwords, run
npm install google-adwords
then include in your file the following:
var ga = require('google-adwords');
API
.use(options)
This function is used to set client access information, specifically the clientID
, the clientSecret
and the developerToken
fields. This is also used prior to each call to set the clientCustomerID
and the refreshToken
.
Any call to Google Adwords automatically refreshes the accessToken for the call. This may be overridden by including both the accessToken
and the tokenExpires
in the user setting along with the clientCustomerID
and the refreshToken
.
ga.use({
clientID: 'clientIDString',
clientSecret: 'clientSecretString',
developerToken: 'developerTokenString'
});
ga.use({
refreshToken: 'refreshTokenString',
clientCustomerID: 'clientCustomerIDString'
});
ga.use({
accessToken: 'accessTokenString',
tokenExpires: 1424716834341,
refreshToken: 'refreshTokenString',
clientCustomerID: 'clientCustomerIDString'
});
.awql()
Once the appropriate access information has been set with .use()
, you may use .awql()
to make calls to your reports. You may do this in a number of ways: chaining, options object, or AWQL string. All options return a Bluebird promise, with .then()
and .catch
for successful and failing use cases, respectively.
chaining
To use .awql()
chaining, simply chain additional keywords onto your query like this:
ga.awql()
.select('Date,Clicks')
.from('ACCOUNT_PERFORMANCE_REPORT')
.during('20120101,20150125')
.send().then(function(results) {
})
Alternatively, you can pass arrays into .select()
and .during()
:
ga.awql()
.select(['Date','Clicks'])
.from('ACCOUNT_PERFORMANCE_REPORT')
.during(['20120101','20150125'])
.send().then(function(results) {
})
You may also add a .where()
and a .and()
into the chain after .from()
, allowing for drilling of information:
ga.awql()
.select(['Date', 'Clicks'])
.from('ACCOUNT_PERFORMANCE_REPORT')
.where('Clicks>100')
.during(['20120101', '20150125'])
.send().then(function(results) {
})
ga.awql()
.select(['Date', 'Clicks'])
.from('ACCOUNT_PERFORMANCE_REPORT')
.where('Clicks>100')
.and('Clicks<200')
.during(['20120101', '20150125'])
.send().then(function(results) {
})
You can chain additional `.and() functions after the first:
ga.awql()
.select(['Date', 'Clicks'])
.from('ACCOUNT_PERFORMANCE_REPORT')
.where('Clicks>100')
.and('Clicks<200')
.and('Clicks!=110')
.during(['20120101', '20150125'])
.send().then(function(results) {
})
Alternatively, you can pass an array of .and()
statements into the first:
ga.awql()
.select(['Date', 'Clicks'])
.from('ACCOUNT_PERFORMANCE_REPORT')
.where('Clicks>100')
.and(['Clicks<200','Clicks!=110'])
.during(['20120101', '20150125'])
.send().then(function(results) {
})
options
You can also access the reports by passing an object into .awql()
as such:
var options = {
select: ['Date', 'Clicks'],
from: 'ACCOUNT_PERFORMANCE_REPORT',
during: ['20120101', '20150125']
}
ga.awql(options).send().then(function(results) {
expect(results).to.be.an('object');
expect(results.report).to.be.a('string');
expect(results.total).to.be.a('string');
expect(results.data).to.be.an('array');
done();
})
As with the promises above, you may pass both strings or arrays to select
, and
, and during
.
string
Finally, you can pass your own AWQL string into .awql
. Make sure there are no spaces in your where
statements, as this string will replace all spaces (besides ,
) with +
for proper API sending.
var awqlStatement = 'SELECT Date, Clicks FROM ACCOUNT_PERFORMANCE_REPORT DURING 20120101, 20150125'
ga.awql(awqlStatement).send().then(function(results) {
});
Returns
All request return information in the following format:
{
report:'Title of the Report',
timeframe: 'Timeframe of the report',
total: 'Overall total of the report',
fieldLength: 7,
data:[]
auth:{
accessToken:'accessTokenString',
tokenExpires: 1424716834341,
}
}
Error Handling
All .awql()
calls return two promise chains, .then()
and .catch()
as outlined in the Bluebird documentation. You may use .catch()
to catch any issues that may have arisen in the call.
.catch()
ga.awql()
.select(['DateRUBBISH', 'ClicksFAKE'])
.from('ACCOUNT_PERFORMANCE_REPORT')
.during(['20120101', '20150125'])
.send().then(function(results) {
})
.catch(function(error) {
})
Contributing
To contribute code to this module, please follow this workflow:
- fork the repo
- make sure to install dev dependencies using
npm install --dev
- Make the changes you desire
- Ensure all changes have a new test in the
test/
folder, and run:
npm test
This will check do the following:
- After making changes in your fork, open a pull request.
Please note that if your code updates do not pass JS Standard style, mocha tests and code coverage, your PR may be rejected and you'll need to fix any issues listed in it.
Changelog
All notable changes to this project will be documented in this file.
This project adheres to Semantic Versioning and Keep A Changelog.
Unreleased
v1.1.1 - 2015-03-13
Added
- Added
.jshintrc
to make codeclimate happy with JS Standard Style
v1.1.0 - 2015-03-13
Added
v1.0.0 - 2015-02-23
Added
License (ISC)
Copyright (c) 2015, Trent Oswald (therebelrobot)
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.