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

gapitoken

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gapitoken

Node.js module for Google API service account authorization (Server to Server flow)

  • 0.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3.3K
decreased by-51.52%
Maintainers
1
Weekly downloads
 
Created
Source

node-gapitoken

Node.js module for Google API service account authorization (Server to Server flow).

Installation

npm install gapitoken

Usage

var GAPI = require('gapitoken');

var gapi = new GAPI({
    iss: 'service account email address from Google API console',
    scope: 'space delimited list of requested scopes',
    keyFile: 'path to private_key.pem'
}, function(err) {
   if (err) { return console.log(err); }

   gapi.getToken(function(err, token) {
       if (err) { return console.log(err); }
       console.log(token);
   });     
});
  • for using node-gapitoken to access Google Cloud Storage see https://github.com/bsphere/node-gcs

Creating a Private key file

  1. Login to Google API Console, and under "API Access" create a "service account" for your project.

  2. Download the .p12 private key file

  3. Convert the .p12 file to .pem: openssl pkcs12 -in key.p12 -out key.pem -nocerts

NOTE: You must set a passphrase for the .pem file

  1. Remove the passphrase from the .pem file: openssl rsa -in key.pem -out key.pem

Keywords

FAQs

Package last updated on 16 Jun 2013

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