This is a Robot to use Linkedin
In this code, I simply loggin in LinkedIn, and make a small publication mentioning a profile page as well.
Use credentials.json for authentication porpuses. Use text-for-publication.json for type the message.
npm install
node index.js
const puppeteer = require("puppeteer");
const credentials = require("./config/credentials.json");
const textForPublication = require("./config/text-for-publication.json");
const socialProfile = textForPublication.socialProfile;
(async () => {
// AWAIT YOUR CODE
})();