
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@oauth-everything/passport-patreon
Advanced tools
A Passport strategy for authenticating with Patreon using OAuth 2.0 and the Patreon API v2.
This module lets you authenticate using Patreon in your Node.js applications. By plugging into Passport, Patreon authentication can be easily and unobtrusively integrated into any application or framework that supports Connect-style middleware, including Express.
$ npm install @oauth-everything/passport-patreon
The Patreon authentication strategy authenticates users using a Patreon
account and OAuth 2.0 tokens. The app ID and secret obtained when creating an
application are supplied as options when creating the strategy. The strategy
also requires a verify callback, which receives the access token and optional
refresh token, as well as profile which contains the authenticated user's
Patreon profile. The verify callback must call cb providing a user to
complete authentication.
passport.use(new Strategy(
{
clientID: PATREON_APP_ID,
clientSecret: PATREON_APP_SECRET,
callbackURL: "http://localhost:3000/auth/patreon/callback"
},
(accessToken: string, refreshToken: string, profile: Profile, cb: VerifyCallback<User>) => {
User.findOrCreate({ patreonId: profile.id }, (err: Error, user: User) => {
return cb(err, user);
});
}
));
Use passport.authenticate(), specifying the 'patreon' strategy, to
authenticate requests.
For example, as route middleware in an Express application:
app.get('/auth/patreon',
passport.authenticate('patreon'));
app.get('/auth/patreon/callback',
passport.authenticate('patreon', { failureRedirect: '/login' }),
function(req, res) {
// Successful authentication, redirect home.
res.redirect('/');
});
FAQs
Patreon OAuth 2.0 strategy for Passport.js
We found that @oauth-everything/passport-patreon 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.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.