@jomari-wp/linkedin-jobs-scraper
v1.0.7
Published
Scrape public available jobs on Linkedin using headless browser
Downloads
18
Maintainers
Readme
linkedin-jobs-scraper
Scrape public available jobs on Linkedin using headless browser. This is a fork repository to allow session parameter instead of using process environment configuration. Kindly support Original repository instead of this repo.
Table of Contents
- Installation
- Usage
- LinkedinScraper
- Anonymous vs authenticated session
- Rate limiting
- Filters
- Company filter
- Logger
- License
Installation
Install package:
npm install --save linkedin-jobs-scraper
Usage
const {
LinkedinScraper,
relevanceFilter,
timeFilter,
typeFilter,
experienceLevelFilter,
events,
} = require("linkedin-jobs-scraper");
(async () => {
// Each scraper instance is associated with one browser.
// Concurrent queries will run on different pages within the same browser instance.
const scraper = new LinkedinScraper({
headless: true,
slowMo: 200,
args: [
"--lang=en-GB",
],
});
// Add listeners for scraper events
// Emitted once for each processed job
scraper.on(events.scraper.data, (data) => {
console.log(
data.description.length,
data.descriptionHTML.length,
`Query='${data.query}'`,
`Location='${data.location}'`,
`Id='${data.jobId}'`,
`Title='${data.title}'`,
`Company='${data.company ? data.company : "N/A"}'`,
`CompanyLink='${data.companyLink ? data.companyLink : "N/A"}'`,
`CompanyImgLink='${data.companyImgLink ? data.companyImgLink : "N/A"}'`,
`Place='${data.place}'`,
`Date='${data.date}'`,
`Link='${data.link}'`,
`applyLink='${data.applyLink ? data.applyLink : "N/A"}'`,
`insights='${data.insights}'`,
);
});
// Emitted once for each scraped page
scraper.on(events.scraper.metrics, (metrics) => {
console.log(`Processed=${metrics.processed}`, `Failed=${metrics.failed}`, `Missed=${metrics.missed}`);
});
scraper.on(events.scraper.error, (err) => {
console.error(err);
});
scraper.on(events.scraper.end, () => {
console.log('All done!');
});
// Custom function executed on browser side to extract job description [optional]
const descriptionFn = () => document.querySelector(".jobs-description")
.innerText
.replace(/[\s\n\r]+/g, " ")
.trim();
// Run queries concurrently
await Promise.all([
// Run queries serially
scraper.run([
{
query: "Engineer",
options: {
locations: ["United States"], // This will override global options ["Europe"]
filters: {
type: [typeFilter.FULL_TIME, typeFilter.CONTRACT]
},
}
},
{
query: "Sales",
options: {
limit: 10, // This will override global option limit (33)
applyLink: false, // Try to extract apply link. Default to true.
descriptionFn: descriptionFn, // Custom job description processor
}
},
], { // Global options, will be merged individually with each query options
locations: ["Europe"],
limit: 33,
}),
]);
// Close browser
await scraper.close();
})();
LinkedinScraper
Each LinkedinScraper
instance is associated with one browser (Chromium) instance. Concurrent runs will be executed
on different pages within the same browser. Package uses puppeteer under the hood
to instantiate Chromium browser instances; the same browser options and events are supported.
For more informations about browser options see: puppeteer-browser-options.
For more information about browser events see: puppeteer-browser-events.
Anonymous vs authenticated session
⚠ WARNING: due to lack of time, anonymous session strategy is no longer maintained. If someone wants to keep support for this feature and become a project maintainer, please be free to pm me.
By default the scraper will run in anonymous mode (no authentication required). In some environments (e.g. AWS or Heroku) this may be not possible though. You may face the following error message:
scraper:error [][] Scraper failed to run in anonymous mode, authentication may be necessary for this environment. Please check the documentation on how to use an authenticated session.
In that case the only option available is to run using an authenticated session. These are the steps required:
- Login to LinkedIn using an account of your choice.
- Open Chrome developer tools:
- Go to tab
Application
, then from left panel selectStorage
->Cookies
->https://www.linkedin.com
. In the main view locate row with nameli_at
and copy content from the columnValue
.
- Set the environment variable
LI_AT_COOKIE
with the value obtained in step 3, then run your application as normal. Example:
LI_AT_COOKIE=<your li_at cookie value here> node app.js
Rate limiting
You may experience the following rate limiting warning during execution: 429 too many requests
. This means you are
exceeding the number of requests per second allowed by the server (this is especially true when using authenticated sessions
where the rate limits are much more strict). You can overcome this by:
- trying a higher
slowMo
value for the scraper options (this will slow down the browser); as a rule of thumb you can add 100 ms for each concurrent query (e.g. 100 for 1 query, 200 for 2 concurrent queries, 300 for 3 concurrent queries and so on); - reducing the number of concurrent queries (make them to run in serial instead).
Example:
const scraper = new LinkedinScraper({
headless: true,
slowMo: 200,
args: [
"--lang=en-GB",
],
});
// Two concurrent queries
await Promise.all([
scraper.run([...]),
scraper.run([...]),
]);
Filters
It is possible to customize queries with the following filters:
- RELEVANCE:
RELEVANT
RECENT
- TIME:
DAY
WEEK
MONTH
ANY
- TYPE:
FULL_TIME
PART_TIME
TEMPORARY
CONTRACT
- EXPERIENCE LEVEL:
INTERNSHIP
ENTRY_LEVEL
ASSOCIATE
MID_SENIOR
DIRECTOR
- REMOTE:
REMOTE
(supported only with authenticated session)
See the following example for more details:
const {
LinkedinScraper,
relevanceFilter,
timeFilter,
typeFilter,
experienceLevelFilter,
remoteFilter,
events,
} = require("linkedin-jobs-scraper");
(async () => {
// [...]
await scraper.run({
query: "",
options: {
filters: {
relevance: relevanceFilter.RELEVANT,
time: timeFilter.MONTH,
type: [typeFilter.FULL_TIME, typeFilter.CONTRACT], // string or array
experience: [experienceLevelFilter.ENTRY_LEVEL, experienceLevelFilter.MID_SENIOR], // string or array
remote: remoteFilter.REMOTE, // supported only with authenticated session
}
}
}, {
locations: ["United States"],
limit: 10,
});
// [...]
})();
Company Filter
It is also possible to filter by company using the public company jobs url on LinkedIn. To find this url you have to:
- Login to LinkedIn using an account of your choice.
- Go to the LinkedIn page of the company you are interested in (e.g. https://www.linkedin.com/company/google).
- Click on
jobs
from the left menu.
- Scroll down and locate
See all jobs
orSee jobs
button.
- Right click and copy link address (or navigate the link and copy it from the address bar).
- Paste the link address in code as follows:
// [...]
await scraper.run({
query: "",
options: {
filters: {
// Copy link address here
companyJobsUrl: "https://www.linkedin.com/jobs/search/?f_C=1441%2C17876832%2C791962%2C2374003%2C18950635%2C16140%2C10440912&geoId=92000000&lipi=urn%3Ali%3Apage%3Acompanies_company_jobs_jobs%3BcbFm1gYoRwy%2FxVRQWbGyKw%3D%3D&licu=urn%3Ali%3Acontrol%3Ad_flagship3_company-see_all_jobs",
}
}
});
// [...]
Logger
Logger uses debug package under the hood. The following namespace are used:
scraper:debug
scraper:info
scraper:warn
scraper:error
Use environment variable DEBUG
or the programmatic API to selectively enable/disable one or more namespace.
Example:
DEBUG=scraper:info node app.js
License
If you like the project and want to contribute you can donate something here!