Package Exports
- passport-forcedotcom
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (passport-forcedotcom) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
passport-forcedotcom
This is a Strategy for use with http://passportjs.org with the Force.com platform (meaning you can use it with Saleforce CRM, your Force.com applications and Database.com). With Jared Hanson's help - it properly resolves a previous issue with handling the incoming OAuth information so that things like the instance_url can be readily available.
You'll need to require it:
var passport = require('passport')
, ForceDotComStrategy = require('passport-forcedotcom').StrategyDefine the strategy with your application credentials and information:
passport.use(new ForceDotComStrategy({
clientID: '{clientID}',
clientSecret: '{clientSecret}',
callbackURL: '{callbackUrl}'
},
function(token, tokenSecret, profile, done) {
console.log(profile);
return done(null, profile);
}
));And then setup some routes to hande the flow:
app.get('/login', passport.authenticate('forcedotcom'));
app.get('/token',
passport.authenticate('forcedotcom', { failureRedirect: '/error' }),
function(req, res){
res.render("index",checkSession(req));
});And as usual with passport, you can update the user serialization/de-serialization.