
Research
Security News
Malicious npm Packages Target BSC and Ethereum to Drain Crypto Wallets
Socket uncovered four malicious npm packages that exfiltrate up to 85% of a victim’s Ethereum or BSC wallet using obfuscated JavaScript.
passport-google-drive
Advanced tools
Passport strategy for authenticating with Google Drive using the OAuth 2.0 API.
This module lets you authenticate using Google Drive, in your Node.js applications.
By plugging into Passport, Drive
authentication can be easily and unobtrusively integrated into any application or
framework that supports Connect-style
middleware, including Express.
$ npm install passport-google-drive
The Google Drive authentication strategy authenticates users using a Google
account and OAuth 2.0 tokens. The strategy requires a verify
callback, which
accepts these credentials and calls done
providing a user, as well as
options
specifying a client ID, client secret, and callback URL.
The consumer key and secret are obtained by creating an application at Google's developer site.
passport.use(new GoogleDriveStrategy({
clientID: DRIVE_CLIENT_ID,
clientSecret: DRIVE_CLIENT_SECRET,
callbackURL: "http://127.0.0.1:3000/auth/google-drive/callback"
},
function(accessToken, refreshToken, profile, done) {
User.findOrCreate({ driveId: profile.id }, function (err, user) {
return done(err, user);
});
}
));
Use passport.authenticate()
, specifying the 'google-drive'
strategy, to
authenticate requests.
For example, as route middleware in an Express application:
app.get('/auth/google-drive',
passport.authenticate('google-drive'));
app.get('/auth/google-drive/callback',
passport.authenticate('google-drive', { failureRedirect: '/login' }),
function(req, res) {
// Successful authentication, redirect home.
res.redirect('/');
});
For a complete, working example, refer to the login example.
Copyright (c) 2016 Sluggy Bear <https://www.slugbay.com>
FAQs
Google Drive authentication strategy for Passport.
The npm package passport-google-drive receives a total of 1 weekly downloads. As such, passport-google-drive popularity was classified as not popular.
We found that passport-google-drive demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket uncovered four malicious npm packages that exfiltrate up to 85% of a victim’s Ethereum or BSC wallet using obfuscated JavaScript.
Security News
TC39 advances 9 JavaScript proposals, including Array.fromAsync, Error.isError, and Explicit Resource Management, which are now headed into the ECMAScript spec.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.