Linkedin-Auto-Connect-Bot is a nodejs package to send connection on linkedin using browser automation. 
It currently runs only on windows.

### Installation

```sh
npm install linkedin-auto-connect-bot
```

### Example
In this example we first import package, then we login with cookies and then send connection on linkedin.
```sh
var linkedin=require("linkedin-auto-connect-bot");

function send(){
	linkedin.send_connection('profile_link')
}
linkedin.login_cookie(cookie_list,send)
```

### Youtube Video
[![](http://img.youtube.com/vi/H_vHVCvrlF0/0.jpg)](https://www.youtube.com/watch?v=H_vHVCvrlF0 "")

#### DataKund
[datakund](https://www.npmjs.com/package/datakund) is needed for browser automation. As soon as this package is imported in code, automated browser will open up.


### Import
```sh
var linkedin=require("linkedin-auto-connect-bot");
```

### Login with credentials
```sh
linkedin.login(username,password)
```

### Login with cookies
```sh
linkedin.login_cookie(list_of_cookies)
```

### Send Connection
```sh
linkedin.send_connection('profile_link')
```

### Cookies
To login with cookies [Edit this Cookie Extension](https://chrome.google.com/webstore/detail/editthiscookie/fngmhnnpilhplaeedifhccceomclgfbg?hl=en) can be added to browser

### Contact Us
* [Telegram](https://t.me/datakund)
* [Website](https://datakund.com)

