1.1.3 • Published 7 years ago

linkedin-unofficial-api v1.1.3

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

linkedin-unofficial-api-node

Unofficial node.js linkedin api implementation.

Requirements

  • EcmaScript 6

API

Methods

Authentication

Current user

Other users

Usage

const linkedin = require('linkedin-unofficial-api')('email', 'pass');

linkedin
  .authenticate()
  .then(linkedin.getWVMP)
  .then((profile) => {
    res.send(profile);
  })
  .catch((err) => {
    res.send(err);
  });

Methods

authenticate

Response

null or challenge_url string

Error

Bad linkedin password provided

Credits

Big thanks to Nick Lane-Smith (nickls) who did the research and thoroughly described linkedin mobile api in his repository.

Also hi-five to all authors and contributors to request-promise library which is used heavily by api.

1.1.3

7 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago