Skip to content
This repository has been archived by the owner on Jan 5, 2022. It is now read-only.

marcosvidolin/google-idtoken-auth

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 

google-token-auth

npm version Codacy Badge Build Status

Node.js middleware to validate Google ID Tokens in the backend server. Validade the request token, get all the Google ID Token fields and populate the req.googleProfileInfo.

Installation

$ npm install google-idtoken-auth

Options

Propertie Type Default Required Description
clientId String true Specify the Google Client ID
tokenHeaderName String x-googleid-token false Custom header name to retrievi the Google ID Token
gSuiteDomains Array false Specify a G Suite domain

Example

var express = require('express');
var googleAuth = require('google-idtoken-auth');

var googleTokenVerifier = googleAuth.googleIdTokenVerifier({
    clientId: "YOUR-GOOGLE-CLIENT-ID"
});

var app = express();
app.use(googleTokenVerifier);

app.get('/', function (req, res) {
  // Get the e-mail from google (email OAuth scope)
  console.log('User e-mail: ', req.googleProfileInfo.email);
});

app.listen(8080);

// curl command that sends an HTTP request with a valid Google ID Token
// curl -H "x-googleid-token: {GOOGLE-ID-TOKEN-HERE}" http://127.0.0.1:8080

See more

Google Sign-In

Authenticate with a backend server

MIT Licensed

Contributors