Giter Site home page Giter Site logo

unofficial-linkedin-api's Introduction

Linkedin Unofficial API

Disclaimer

  • This is an unofficial API for linked in. Use at your own risk. This package could break if Linkedin does a major update.

  • It is also a possibility that the account that is used could get banned. However, in all of my testing I haven't seen this happen. This package has a random sleep timer to help stay under-the-radar.

  • The getURIFromEmail function uses linkedin navigator. There is a relatively low rate-limit here for normal accounts and slightly higher premium accounts. Think 70 and 500ish respectively.

Contributing

This project was open sourced to help add new endpoints.

You can find the endpoints for new elements by loading linkedin.com (logged in), and right-click 'view source'.

From there there the endpoints will be in the source code.

Image of linkedin source

From there you can use the Dev Tools network tab to find the headers that are used. Usually it requires a crsf-token header with a value found in the cookie from when you login. There is a helper function for this located in src/utils/helpers called getJSESSIONFromJar

Right now the transformer is pretty messy. I'd appreciate help cleaning it up.

To contribute, please open an issue or PR and document any changes for the end user. I will approve review and approve them.

I will write tests.

Example

const client = require('unoffical-linkedin-api')

(async () => {

    try {
        // Login Cookie Saved
        await client.login(process.env.EMAIL, process.env.PASSWORD)

        const profileURI = client.getURIFromEmail('[email protected]')
        
        const identifier = client.getProfileIdentifierFromURI(profileURI)

        /* The second parameter, if true, uses the transformer to remove proprietary linkedin junk and 
        * also gets more skills and experience. The skills and experience initially returned are limited.
        */

        const profile    =  client.getProfileById(identifier, false)

        console.log(profile)

    } catch(e) {
        console.error(e)
    }
      
})()

unofficial-linkedin-api's People

Contributors

quesurifn avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.