@getstation/electron-google-oauth2
TypeScript icon, indicating that this package has built-in type declarations

14.0.0 • Public • Published

@getstation/electron-google-oauth2

Library that manages Google OAuth2 authentication for your Electron app.

Install

// npm
$ npm install --save @getstation/electron-google-oauth2
// yarn
$ yarn add @getstation/electron-google-oauth2

Usage

Access Token

import ElectronGoogleOAuth2 from '@getstation/electron-google-oauth2';

app.on('ready', () => {
  const myApiOauth = new ElectronGoogleOAuth2(
    'CLIENT_ID',
    'CLIENT_SECRET',
    ['https://www.googleapis.com/auth/drive.metadata.readonly']
  );

  myApiOauth.openAuthWindowAndGetTokens()
    .then(token => {
      // use your token.access_token
    });
});

Refresh Token

import ElectronGoogleOAuth2 from '@getstation/electron-google-oauth2';

app.on('ready', () => {
  const myApiOauth = new ElectronGoogleOAuth2(
    'CLIENT_ID',
    'CLIENT_SECRET',
    ['https://www.googleapis.com/auth/drive.metadata.readonly']
  );
  
  const refreshToken = \\ Read the saved refresh token
  
  if(refreshToken) {
    myApiOauth.setTokens({ refresh_token: refreshToken });
  } else {
    myApiOauth.openAuthWindowAndGetTokens()
      .then(token => {
        // save the token.refresh_token secured to use it the next time the app loading
        // use your token.access_token
      });
  }
});

Use custom successRedirectURL

const myApiOauth = new ElectronGoogleOAuth2(
  'CLIENT_ID',
  'CLIENT_SECRET',
  ['https://www.googleapis.com/auth/drive.metadata.readonly']
  { successRedirectURL: 'https://google.com' },
);

Requires with plain JavaScript

const ElectronGoogleOAuth2 = require('@getstation/electron-google-oauth2').default;
new ElectronGoogleOAuth2(CLIENT_ID, CLIENT_SECRET, SCOPES_LIST);

License

MIT

Package Sidebar

Install

npm i @getstation/electron-google-oauth2

Weekly Downloads

156

Version

14.0.0

License

MIT

Unpacked Size

21.4 kB

Total Files

8

Last publish

Collaborators

  • trapcodien
  • magne4000
  • nacryn
  • matthd
  • v1s10n_4
  • jeremy_vincent