Last active
December 28, 2023 20:14
-
-
Save nischalshakya95/38959cb5e5633db306ea6aaa4ad31152 to your computer and use it in GitHub Desktop.
Google Authentication with nodejs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html | |
head | |
title Google OAuth | |
body | |
h1 Google Authentication | |
a(href = url) | |
button(type="button") #{buttonSpan} | |
p #{JSON.stringify(userInfo)} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import express from 'express'; | |
import {google} from 'googleapis'; | |
const app = express(); | |
app.set('views', 'src/views'); | |
app.set('view engine', 'pug'); | |
app.use(express.json()); | |
app.use(express.urlencoded({extended: false})); | |
const oauth2Client = new google.auth.OAuth2( | |
'Client Id', | |
'Client Secret', | |
'http://localhost:8080/auth/google/callback' | |
); | |
const redirectUrl = oauth2Client.generateAuthUrl({ | |
access_type: 'offline', | |
prompt: 'consent', | |
scope: ['email', 'profile'] | |
}); | |
let auth = false; | |
app.get('/', async function (req, res) { | |
let oauth2 = google.oauth2({version: 'v1', auth: oauth2Client}); | |
if (auth) { | |
let userInfo = await oauth2.userinfo.v2.me.get(); | |
res.render('index', {buttonSpan: 'Sign out', url: 'http://localhost:8080/logout', userInfo: userInfo.data}) | |
} else { | |
res.render('index', {buttonSpan: 'Sign in', url: redirectUrl, userInfo: {}}) | |
} | |
}); | |
app.get('/auth/google/callback', async function (req, res) { | |
const code = req.query.code; | |
if (code) { | |
const {tokens} = await oauth2Client.getToken(code); | |
oauth2Client.setCredentials(tokens); | |
auth = true; | |
} | |
res.redirect('/'); | |
}); | |
app.get('/logout', (req, res) => { | |
oauth2Client.revokeCredentials().then(r => console.log('revoke ', r)); | |
auth = false; | |
res.redirect('/'); | |
}); | |
app.listen(8080); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment