Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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";
// Blob object representing the image
const image = await fetch("https://example.com/some-image.jpeg").then((response) => response.blob()); ;
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.");
}
The main class of the package. Takes an access token for the LinkedIn API as an argument.
createPostWithImage(post: string, image: Blob, 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.
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.