Skip to content

Instantly share code, notes, and snippets.

View MWaris97's full-sized avatar
🎯
Focusing

Muhammad Waris MWaris97

🎯
Focusing
View GitHub Profile
@MWaris97
MWaris97 / index.js
Last active May 14, 2024 11:47
Code for uploading files to google drive with service account using Nodejs
const createReadStream = require('fs').createReadStream;
const path = require('path');
const process = require('process');
const { google } = require('googleapis');
// Downloaded from while creating credentials of service account
const pkey = require('./pk.json');
const SCOPES = ['https://www.googleapis.com/auth/drive.file'];