1.0.0 • Published 3 years ago

passport-forge v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

passport-forge

Autodesk Forge three-legged authentication strategy for Passport.

This module lets you authenticate with Autodesk Forge using OAuth 2.0 in your Node.js applications.

Install

$ npm install passport-forge

Usage

Configure Strategy

The Autodesk Forge three-legged authentication strategy authenticates users using a third-party account and OAuth 2.0 tokens. The provider's client identifer and secret, are specified as options. The strategy requires a verify callback, which receives an access token and profile, and calls done providing a user. `var ForgeOAuth2Strategy = require('passport-forge').Strategy

passport.use(new ForgeOAuth2Strategy({
    authorizationURL: 'https://developer.api.autodesk.com/authentication/v1/authenticate',
    tokenURL: 'https://developer.api.autodesk.com/authentication/v1/getToken',
    clientID: EXAMPLE_CLIENT_ID,
    clientSecret: EXAMPLE_CLIENT_SECRET,
    callbackURL: 'http://localhost:3000/auth/example/callback',
    scopes: 'data:read'
  },
  function(accessToken, refreshToken, profile, done) {
    User.findOrCreate({ exampleId: profile.id }, function (err, user) {
      return done(err, user);
    });
  }
));`

Authenticate Requests

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

For example, as route middleware in an Express application:

`app.get('/auth/example',
  passport.authenticate('forge'));

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

Related Modules

Tests

$ npm install

License

The MIT License

Author

Sourabh Soni\ Prolincur Technologies