Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

adwords-reports-nodejs-lib

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adwords-reports-nodejs-lib

Node.js library for pulling AdWords API reports.

  • 1.1.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

AdWords Reports Node.js Library

The project adwords-reports-nodejs-lib provides a simple AdWords reporting library for pulling ad hoc reports described in the AdWords Query Lanaguage (AWQL) directly from the AdWords API.

Installation

If you haven't already, first, install Node.js for your platform of choice (macOS, Windows, UNIX-like). For UNIX-like systems, the easiest may be to install the Node Version Manager (nvm), and then have nvm install Node.js via nvm install node.

With Node.js comes the Node Package Manager (npm). You can install the adwords-reports-nodejs-lib library with the npm command below.

>$ npm install --save adwords-reports-nodejs-lib

Requirements

In order to use the library, you need to sign up for the AdWords API in order to get a Developer Token and then create a project in the Developer Console. This step provides you with a Client ID and a Client Secret that will be needed during the next steps described in the following.

Usage

The library is Promise-based and can be used as outlined in the sample below. Upon the first run, the library will guide you through the necessary OAuth authentication steps, this is a one-time process, the library automatically takes care of refreshing expired authentication tokens.

var adwords = require('adwords-reports-nodejs-lib');
adwords.getReport({
  // Change to a real Customer ID.
  cid: '123-456-789',
  // Change AWQL query according to the grammar published at
  // https://developers.google.com/adwords/api/docs/guides/awql.
  //
  // Check https://developers.google.com/adwords/api/docs/appendix/reports/all-reports
  // for the available report types and fields.
  awql: 'SELECT Criteria FROM KEYWORDS_PERFORMANCE_REPORT DURING LAST_WEEK'
}).then(function(data) {
  console.log(data);
}).catch(function(err) {
  throw(err);
});

License

Copyright 2016 Thomas Steiner (@tomayac, tomac@google.com)

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Keywords

FAQs

Package last updated on 21 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc