linkedin-publisher
ACTIONPublishes text posts to a LinkedIn profile via the LinkedIn Posts API (POST /rest/posts). Uses LINKEDIN_ACCESS_TOKEN and LINKEDIN_PERSON_URN secrets.
Endpoints
· 4POST/publishPublishes a text post to LinkedIn via the LinkedIn Posts API
Input Schema
{
"type": "object",
"required": [
"post_content"
],
"properties": {
"access_token": {
"type": "string",
"description": "Optional override token; if omitted, uses LINKEDIN_ACCESS_TOKEN secret"
},
"post_content": {
"type": "string",
"description": "Full text of the LinkedIn post"
}
}
}GET/statusReturns the last publish status and daily publish count
GET/meReturns the authenticated user's LinkedIn profile info (sub, name, email) via the userinfo endpoint
POST/publish-carouselPublishes a PDF carousel post to LinkedIn with multiple slides
Input Schema
{
"type": "object",
"required": [
"slides"
],
"properties": {
"slides": {
"type": "array",
"items": {
"type": "object",
"required": [
"title",
"body"
],
"properties": {
"body": {
"type": "string",
"description": "Slide body text"
},
"title": {
"type": "string",
"description": "Slide title"
},
"bulletPoints": {
"type": "array",
"items": {
"type": "string"
},
"maxItems": 5,
"description": "Optional bullet points (max 5)"
}
}
},
"maxItems": 10,
"minItems": 1,
"description": "Array of 1-10 slides, each with title, body, and optional bulletPoints"
},
"post_text": {
"type": "string",
"description": "Optional commentary text above the carousel"
},
"access_token": {
"type": "string",
"description": "Optional LinkedIn access token (uses LINKEDIN_ACCESS_TOKEN secret if not provided)"
}
}
}Required Secrets
· 1LINKEDIN_ACCESS_TOKEN
✦
Similar ACTION Pieces
File Explorer
Web-based file explorer for browsing the workspace directory structure and viewing file contents with syntax highlighting. Read-only.
Voiceover Service
ElevenLabs-powered voiceover, sound effects, and music generation service. Used to add spoken narration and audio to media content.
R2 Asset Manager
Cloudflare R2-backed asset storage service. Handles uploads, URL imports, and file serving with globally accessible shareable URLs.