LinkedIn authentication with Bare Auth.
npm install bare-auth-linkedin
Go to: https://www.linkedin.com/developer/apps to get started
- Go to: https://www.linkedin.com/developer/apps/{{APP_ID}}/auth
- Add a redirect URL with the following format:
{{ORIGIN}}/auth/
. Example:http://localhost:7000/auth/
orhttps://app.finbox.io/auth/
Important: Don't forget to add the trailing slash as part of the valid redirect URI.
var LinkedIn = require('linkedin-bare-auth');
var linkedin = LinkedIn({
url: 'http://auth.example.com'
client_id: linkedin_client_id,
scope: ['profile']
})
linkedin(function(err, profile) {
if (err) throw err;
console.log(profile);
});
var LinkedIn = require('linkedin-bare-auth');
var bodyParser = require('body-parser');
var express = require('express');
var cors = require('cors');
var app = module.exports = express();
app.use(cors());
app.use(bodyParser.json());
app.use(LinkedIn({
client_secret: client_secret
// optionally include a 'sign' function to add support for JWT
}));
app.listen(5000);
MIT
Copyright (c) 2015 Matthew Mueller <matt@lapwinglabs.com>