-
Notifications
You must be signed in to change notification settings - Fork 171
Basic Tutorial
Wagner Leonardi edited this page Oct 16, 2019
·
6 revisions
- Node.js >= 7.6.0: You can download Node.js here.
- via npm:
npm i scrapedin
- Require scrapedin in your code:
const scrapedin = require('./src/scrapedin')- Create an
optionsobject withscrapedinparameters:
const options = {
email: 'your.linkedin@email.com',
password: 'your.linkedin.password'
}- Call
scrapedinfunction, and use the returnedprofileScraperfunction to scrap a LinkedIn profile:
const profileScraper = await scrapedin(options)
const profile = await profileScraper('https://www.linkedin.com/in/some-profile/')