@oauth-everything/passport-twitch
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

@oauth-everything/passport-twitch

A Passport strategy for authenticating with Twitch using OAuth 2.0 and the Twitch API.

This module lets you authenticate using Twitch in your Node.js applications. By plugging into Passport, Twitch authentication can be easily and unobtrusively integrated into any application or framework that supports Connect-style middleware, including Express.

Install

$ npm install @oauth-everything/passport-twitch

Configure Strategy

The Twitch authentication strategy authenticates users using a Twitch 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 Twitch profile. The verify callback must call cb providing a user to complete authentication.

passport.use(new Strategy(
    {
        clientID: TWITCH_APP_ID,
        clientSecret: TWITCH_APP_SECRET,
        callbackURL: "http://localhost:3000/auth/twitch/callback"
    },
    (accessToken: string, refreshToken: string, profile: Profile, cb: VerifyCallback<User>) => {

        User.findOrCreate({ twitchId: profile.id }, (err: Error, user: User) => {
            return cb(err, user);
        });

    }
));

Authenticate Requests

Use passport.authenticate(), specifying the 'twitch' strategy, to authenticate requests.

For example, as route middleware in an Express application:

app.get('/auth/twitch',
  passport.authenticate('twitch'));

app.get('/auth/twitch/callback',
  passport.authenticate('twitch', { failureRedirect: '/login' }),
  function(req, res) {
    // Successful authentication, redirect home.
    res.redirect('/');
  });

License

The MPL v2 License

Readme

Keywords

Package Sidebar

Install

npm i @oauth-everything/passport-twitch

Weekly Downloads

56

Version

1.0.3

License

MPL-2.0

Unpacked Size

90.2 kB

Total Files

25

Last publish

Collaborators

  • tschrock
  • tschrock123