linkedin-search-people

1.0.1 • Public • Published

Linkedin-Search-People is a nodejs package to search keyword in people and then scrape people data on linkedin using browser automation. It currently runs only on windows.

Installation

npm install linkedin-search-people

Example

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

var linkedin=require("linkedin-search-people");
function get_data(response){
	var data=response["body"]
	console.log("data",data)
}
function results(){
	linkedin.people_results(get_data)
}
function search(){
	linkedin.search_people('keyword',results)
}
linkedin.login_cookie(cookie_list,search)

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-search-people");

Login with credentials

linkedin.login(username,password)

Login with cookies

linkedin.login_cookie(list_of_cookies)

Search keyword

linkedin.search_people('keyword')

Get Search Results

linkedin.people_results('keyword')

Cookies

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

Contact Us

Package Sidebar

Install

npm i linkedin-search-people

Weekly Downloads

2

Version

1.0.1

License

ISC

Unpacked Size

2.24 kB

Total Files

3

Last publish

Collaborators

  • datakund