gapitoken

WebJar for gapitoken

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

gapitoken
Последняя версия

Последняя версия

0.1.5
Дата

Дата

Тип

Тип

jar
Описание

Описание

gapitoken
WebJar for gapitoken
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/bsphere/node-gapitoken

Скачать gapitoken

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/gapitoken/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>gapitoken</artifactId>
    <version>0.1.5</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/gapitoken/
implementation 'org.webjars.npm:gapitoken:0.1.5'
// https://jarcasting.com/artifacts/org.webjars.npm/gapitoken/
implementation ("org.webjars.npm:gapitoken:0.1.5")
'org.webjars.npm:gapitoken:jar:0.1.5'
<dependency org="org.webjars.npm" name="gapitoken" rev="0.1.5">
  <artifact name="gapitoken" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='gapitoken', version='0.1.5')
)
libraryDependencies += "org.webjars.npm" % "gapitoken" % "0.1.5"
[org.webjars.npm/gapitoken "0.1.5"]

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
org.webjars.npm : jws jar [3.0.0,3.1)
org.webjars.npm : request jar [2.54.0,3)

Модули Проекта

Данный проект не имеет модулей.

node-gapitoken

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

Build Status

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);
   });     
});

Another option is to pass the private key as a string

var key = "-----BEGIN RSA PRIVATE KEY-----\n\
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n\
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n\
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n\
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n\
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n\
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n\
-----END RSA PRIVATE KEY-----";

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

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

Версии библиотеки

Версия
0.1.5