1.1.0 • Published 7 years ago

google-oauth2-token-info v1.1.0

Weekly downloads
2
License
MIT License
Repository
github
Last release
7 years ago

google-oauth2-token-info

Installation

The library is distributed on npm. In order to add it as a dependency, run the following command:

$ npm install google-oauth2-token-info --save

Usage

var tokenInfo = require('google-oauth2-token-info');

const token = '123abc...' // example token

tokenInfo(token)
    .then(data => {
      console.log(data);
    });

Response for a valid token

{
  azp: "xxxxxxxxxxx",
  aud: "xxxxxxxxxxx",
  sub: "xxxxxxxxxxx",
  hd: "xxxxxxxxxxx",
  email: "xxxxxxxxxxx","xxxxxxxxxxx",
  email_verified: "xxxxxxxxxxx",
  at_hash: "xxxxxxxxxxx",
  iss: "xxxxxxxxxxx",
  iat: "xxxxxxxxxxx",
  exp: "xxxxxxxxxxx",
  name: "xxxxxxxxxxx",
  picture: "xxxxxxxxxxx",
  given_name: "xxxxxxxxxxx",
  family_name: "xxxxxxxxxxx",
  locale: "xxxxxxxxxxx",
  alg: "xxxxxxxxxxx",
  kid: "xxxxxxxxxxx"
}
1.1.0

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago