File size: 406 Bytes
62c3fe0 |
1 2 3 4 5 6 7 8 9 10 11 12 |
const { google } = require('googleapis');
require('dotenv').config();
// OAuth2 setup with your credentials from .env file
const CLIENT_ID = process.env.CLIENT_ID;
const CLIENT_SECRET = process.env.CLIENT_SECRET;
const REDIRECT_URI = process.env.REDIRECT_URI;
// Google OAuth2 client
const oAuth2Client = new google.auth.OAuth2(CLIENT_ID, CLIENT_SECRET, REDIRECT_URI);
module.exports = { oAuth2Client }; |