Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@busshi/linkedin-private-api

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@busshi/linkedin-private-api

Forked version of [this API](https://github.com/eilonmore/linkedin-private-api) but with additionnal functionnalities waiting for the author to merge the [pull request](https://github.com/eilonmore/linkedin-private-api/pull/473)

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

NodeJS LinkedIn API

Forked version of this API but with additionnal functionnalities waiting for the author to merge the pull request

Installation

yarn add @busshi/linkedin-private-api

Examples

import { Client } from "@busshi/linkedin-private-api";

const receivedScroller = client.invitation.getReceivedInvitations();
const receivedInvitations = await receivedScroller.scrollNext();

for (const invit of receivedInvitations) {
    const { entityUrn, profile, sharedSecret } = invit;
    const { profileId } = profile;
    const invitationId = entityUrn.split(":")[3];

    await client.invitation.replyInvitation({
        invitationId,
        invitationSharedSecret: sharedSecret,
    });
}  
const conversation = await client.conversation.markConversationAsRead({
      conversationId,
});
console.log(conversation);

Notes

Made for learning purposes.

Keywords

FAQs

Package last updated on 05 Dec 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc