Socket
Book a DemoInstallSign in
Socket

bare-auth-linkedin

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bare-auth-linkedin

Stateless authentication with LinkedIn using Bare Auth

1.0.4
latest
Source
npmnpm
Version published
Weekly downloads
0
Maintainers
2
Weekly downloads
 
Created
Source

bare-auth-linkedin

LinkedIn authentication with Bare Auth.

Installation

npm install bare-auth-linkedin

Setup

1. Create an App

Go to: https://www.linkedin.com/developer/apps to get started

2. Add a valid Redirect URI

Important: Don't forget to add the trailing slash as part of the valid redirect URI.

3. Setup the client-side
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);
});
4. Setup the server-side (example using express)
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);

License

MIT

Copyright (c) 2015 Matthew Mueller <matt@lapwinglabs.com>

Keywords

authentication

FAQs

Package last updated on 05 Oct 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.