This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// A simple and raw example on how to scrape company employees data. | |
// this script will save the ouput in a .json file. | |
// the script needs your cookies to login. | |
// For Educational Purposes Only :) | |
const puppeteer = require('puppeteer'); | |
const fs = require('fs'); | |
const cookies = require('./cookies.json'); | |
const API_ENDPOINT = "https://www.linkedin.com/voyager/api/search/hits?" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
atom sync |