Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
unofficial-linkedin-api
Advanced tools
This is an unofficial API for linked in. Use at your own risk. This package could break if Linkedin does a major update.
It is also a possibility that the account that is used could get banned. However, in all of my testing I haven't seen this happen. This package has a random sleep timer to help stay under-the-radar.
The getURIFromEmail
function uses linkedin navigator. There is a relatively low rate-limit here for normal accounts and slightly higher premium accounts. Think 70 and 500ish respectively.
This project was open sourced to help add new endpoints.
You can find the endpoints for new elements by loading linkedin.com (logged in), and right-click 'view source'.
From there there the endpoints will be in the source code.
From there you can use the Dev Tools network tab to find the headers that are used. Usually it requires a crsf-token
header with a value found in the cookie from when you login. There is a helper function for this located in src/utils/helpers
called getJSESSIONFromJar
Right now the transformer is pretty messy. I'd appreciate help cleaning it up.
To contribute, please open an issue or PR and document any changes for the end user. I will approve review and approve them.
I will write tests.
const client = require('unoffical-linkedin-api')
(async () => {
try {
// Login Cookie Saved
await client.login(process.env.EMAIL, process.env.PASSWORD)
const profileURI = client.getURIFromEmail('test@gmail.com')
const identifier = client.getProfileIdentifierFromURI(profileURI)
/* The second parameter, if true, uses the transformer to remove proprietary linkedin junk and
* also gets more skills and experience. The skills and experience initially returned are limited.
*/
const profile = client.getProfileById(identifier, false)
console.log(profile)
} catch(e) {
console.error(e)
}
})()
FAQs
Unofficial linkedin api for Node. Use at your own risk.
The npm package unofficial-linkedin-api receives a total of 4 weekly downloads. As such, unofficial-linkedin-api popularity was classified as not popular.
We found that unofficial-linkedin-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.