linkedin-message-scraper

A nodejs package to scrape user's messages data from linkedin automatically.

Usage no npm install needed!

<script type="module">
  import linkedinMessageScraper from 'https://cdn.skypack.dev/linkedin-message-scraper';
</script>

README

Linkedin-Message-Scraper is a nodejs package to scrape messages of a user on linkedin using browser automation. It currently runs only on windows.

Installation

npm install linkedin-message-scraper

Example

In this example we first import package, then we login with cookies and then scrape data.

var linkedin=require("linkedin-message-scraper");
function get_data(response){
    var data=response["body"]
    console.log("data",data)
}
function fetch(){
    linkedin.get_messages("profile link",get_data)
}

linkedin.login_cookie(cookie_list,fetch)

Youtube Video

DataKund

datakund is needed for browser automation. As soon as this package is imported in code, automated browser will open up.

Import

var linkedin=require("linkedin-message-scraper");

Login with credentials

linkedin.login(username,password)

Login with cookies

linkedin.login_cookie(list_of_cookies)

Get Messages of a user

linkedin.get_messages("profile link")

Cookies

To login with cookies Edit this Cookie Extension can be added to browser

Contact Us