with AI Chatbot Hub and LinkedIn?
Emit new event when a new post is created by the organization. See the documentation
Create post on LinkedIn using text, URL or article. See the docs for more information
Create post on LinkedIn using text, URL or article. See the docs for more information
Create a comment on a share or user generated content post. See the docs here
Create an image post on LinkedIn. See the docs here
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ai_chatbot_hub: {
type: "app",
app: "ai_chatbot_hub",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.aichatbothub.com/api/v1/chatbots`,
headers: {
Authorization: `Bearer ${this.ai_chatbot_hub.$auth.api_key}`,
},
})
},
})
The LinkedIn API on Pipedream allows you to automate interactions with your LinkedIn account, such as posting updates, managing your profile, and engaging with your network. With Pipedream's serverless platform, you can create workflows that trigger on various events, process data, and connect with countless other apps to extend your LinkedIn presence, analyze your network's demographics, automate content sharing, and more.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
linkedin: {
type: "app",
app: "linkedin",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.linkedin.com/v2/me`,
headers: {
Authorization: `Bearer ${this.linkedin.$auth.oauth_access_token}`,
},
})
},
})