
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
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
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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.