Install the Social-Post-API NPM Client Package if you use Node.js on the server-side. The package simplifies the calls by wrapping the RESTful calls.
Obtain your secret API Key at www.ayrshare.com
npm i social-post-api
Examples of Post, History, and Delete:
const SocialPost = require("social-post-api");const API_KEY = "API KEY"; // get an API Key at ayrshare.comconst social = new SocialPost(API_KEY);const run = async () => {/** post */const post = await social.post({post: "One more time",platforms: ["twitter", "facebook", "linkedin"],}).catch(console.error);console.log(post);/** history */const history = await social.history().catch(console.error);console.log(history);/** delete */const deletePost = await social.delete({ id: post.id }).catch(console.error);console.log(deletePost);};run();
​NPM Package​
​Github Repository​
​Issue Discussion​