Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
linkedin-post-share
Advanced tools
A Linkedin Wrapper for Post/Share API. This will help you to post content on linkedin.
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.
To install the package, use NPM:
npm install linkedin-post-share
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.");
}
This package will automatically remove any reserved characters that are mentioned in the Linkedin Docs like [|{}@\[\]()<>\\*_~+]
from the post string.
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.
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.
FAQs
A Linkedin Wrapper for Post/Share API. This will help you to post content on linkedin.
The npm package linkedin-post-share receives a total of 6 weekly downloads. As such, linkedin-post-share popularity was classified as not popular.
We found that linkedin-post-share demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.