Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
adwords-reports-nodejs-lib
Advanced tools
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.
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
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.
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);
});
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.
FAQs
Node.js library for pulling AdWords API reports.
We found that adwords-reports-nodejs-lib demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.