New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

linkedin-search-groups

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

linkedin-search-groups

A nodejs package to search keyword in linkedin groups and scrape search results data from linkedin automatically.

latest
npmnpm
Version
1.0.1
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

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

Installation

npm install linkedin-search-groups

Example

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

var linkedin=require("linkedin-search-groups");
function get_data(response){
	var data=response["body"]
	console.log("data",data)
}
function results(){
	linkedin.groups_results(get_data)
}
function search(){
	linkedin.search_groups('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-groups");

Login with credentials

linkedin.login(username,password)

Login with cookies

linkedin.login_cookie(list_of_cookies)

Search keyword

linkedin.search_groups("keyword")

Get Search Results

linkedin.groups_results()

Cookies

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

Contact Us

  • Telegram
  • Website

Keywords

linkedin

FAQs

Package last updated on 26 Mar 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts