Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 464 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 464 Bytes

egg-passport-linkedin

linkedin passport plugin for egg

Install

$ npm i egg-passport-linkedin --save

Usage

// config/plugin.js
exports.passportLinkedin = {
  enable: true,
  package: 'egg-passport-linkedin',
};

Configuration

// config/config.default.js
exports.passportLinkedin = {
  key: 'your oauth key',
  secret: 'your oauth secret',
};

see config/config.default.js for more detail.