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

linkedin-post-share

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

linkedin-post-share

A Linkedin Wrapper for Post/Share API. This will help you to post content on linkedin.

  • 1.1.15
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7
decreased by-12.5%
Maintainers
1
Weekly downloads
 
Created
Source

LinkedIn Post Share

A Node.js package for sharing a post on LinkedIn with an image.

Please note that this package only supports creating a post with an image as of now. More LinkedIn posting formats will be added soon.

Installation

To install the package, use NPM:

npm install linkedin-post-share

Usage

To use the package, you will need to obtain an access token for the LinkedIn API. You can do this by following the instructions in the LinkedIn API documentation.

Once you have obtained an access token, you can create a LinkedinPostShare instance and call the createPostWithImage method to share a post on LinkedIn:

import LinkedinPostShare from "linkedin-post-share";

const accessToken = "<your access token>";

const post = "This is my post content";
// Buffer representing the image
const image = await fetch("https://example.com/some-image.jpeg").then((response) => response.buffer()); ;
const imageAlt = "Alternative text for the image";

const linkedinPostShare = new LinkedinPostShare(accessToken);
const result = await linkedinPostShare.createPostWithImage(post, image, imageAlt);

if (result) {
  console.log("Post shared successfully!");
} else {
  console.log("Failed to share post.");
}

🚨 NOTE

This package will automatically remove any reserved characters that are mentioned in the Linkedin Docs like [|{}@\[\]()<>\\*_~+] from the post string.

API

LinkedinPostShare

The main class of the package. Takes an access token for the LinkedIn API as an argument.

  • createPostWithImage(post: string, image: Buffer, imageAlt?: string): Promise<boolean> Creates a post on LinkedIn with an image. Returns a Promise that resolves to true if the post was shared successfully, or false otherwise.

    • post - The text of the post.
    • image - A Buffer.
    • imageAlt - Optional alternative text for the image. If not provided, a default value will be used.

Contributing

Contributions to this package are welcome! If you find a bug or would like to request a new feature, please open an issue on the GitHub repository. If you would like to contribute code, please open a pull request.

Keywords

FAQs

Package last updated on 06 Apr 2023

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