2024-05-09 05:38:01 -07:00
|
|
|
# linkedin-api
|
2024-05-09 08:10:20 -07:00
|
|
|
An actually useful LinkedIn Nodejs package.
|
|
|
|
|
|
|
|
|
|
## Disclaimers
|
|
|
|
|
This package is not in any way affiliated with LinkedIn. In fact, your account may be banned for using this (hasn't happened to me though).
|
|
|
|
|
|
|
|
|
|
You can use your LinkedIn credentials in code, making this super simple to use!
|
|
|
|
|
|
2024-05-31 15:49:51 -04:00
|
|
|
*This project was HEAVILY inspired by Tomquirk's LinkedIn-API PyPi package, which you can find at https://github.com/tomquirk/linkedin-api*
|
2024-05-09 08:10:20 -07:00
|
|
|
|
2024-05-31 11:06:16 -04:00
|
|
|
## Installation
|
|
|
|
|
`npm i linkedin-api-js`
|
|
|
|
|
|
|
|
|
|
|
2024-05-09 08:10:20 -07:00
|
|
|
## Quick-Start
|
|
|
|
|
```JS
|
|
|
|
|
// log in
|
|
|
|
|
const LAPI = new linkedInAPIClass();
|
|
|
|
|
await LAPI.login("pinknodders@pinknodders.lol", "**********");
|
|
|
|
|
|
|
|
|
|
// GET a company
|
|
|
|
|
const comp = await LAPI.searchCompanies("Linux");
|
|
|
|
|
|
|
|
|
|
// GET one employee
|
|
|
|
|
const emp = await comp[0].getEmployees("Torvalds", 1);
|
|
|
|
|
```
|
|
|
|
|
|
2024-05-31 15:53:17 -04:00
|
|
|
For more information, check out [The Wiki](https://github.com/ION606/linkedin-api/wiki/home)
|
|
|
|
|
|
2024-08-24 17:57:41 +00:00
|
|
|
## Experiencing API issues?
|
|
|
|
|
Check out some documented [Common Errors](https://github.com/ION606/linkedin-api/wiki/Errors)
|
2024-08-24 17:57:10 +00:00
|
|
|
|
2024-05-09 08:10:20 -07:00
|
|
|
## Contributions
|
|
|
|
|
If you want to contribute, just fork, add your features, then make a PR
|
|
|
|
|
|
|
|
|
|
If you do contribute, please follow these guidelines
|
|
|
|
|
1. Document your changes in the PR (i.e. make a bulleted list of changes)
|
|
|
|
|
2. If you change existing code, you must specify that
|
|
|
|
|
3. Please please please don't be me and push credentials
|
|
|
|
|
|
|
|
|
|
## Reporting Bugs
|
|
|
|
|
Please open an issue using the following guildelines
|
|
|
|
|
1. Be clear and concise
|
|
|
|
|
2. Provide the code necessary to reproduce the problem
|
|
|
|
|
|
|
|
|
|
Thanks for using my project!
|
2024-08-24 17:57:10 +00:00
|
|
|
ION606
|