Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

n8n-nodes-upload-post

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

n8n-nodes-upload-post

n8n community node for Upload Post

latest
Source
npmnpm
Version
0.1.18
Version published
Weekly downloads
1K
72.73%
Maintainers
1
Weekly downloads
 
Created
Source

n8n-nodes-upload-post

This is an n8n community node package for Upload Post. It allows you to automate uploading photos, videos, and text posts to various social media platforms supported by the Upload Post API.

n8n is a fair-code licensed workflow automation tool.

Installation

Follow the n8n community node installation guide to install this node.

  • Go to Settings > Community Nodes.
  • Select Install.
  • Enter n8n-nodes-upload-post in Enter npm package name.
  • Agree to the risks of using community nodes.
  • Select Install.

After installing the node, you can use it in your n8n workflows.

Credentials

To use this node, you need to configure the Upload Post API credentials:

  • Create an API key from your Upload Post dashboard.
  • In n8n, go to Credentials > New.
  • Search for Upload Post API and select it.
  • Enter a Credential Name.
  • Paste your Upload Post API key into the API Key field.
  • Select Save.

Operations

The node provides the following operations grouped for clarity:

Upload Actions

  • Upload Photo(s): Upload one or more photos to supported platforms.
    • Supports file uploads and photo URLs.
    • Common parameters: User Identifier, Platform(s), Title, Description (optional), Photos (Files or URLs), Scheduled Date (optional).
    • Title/Description overrides per platform: set [platform]_title and [platform]_description to override the generic fields (e.g., instagram_title, youtube_description).
    • Platform-specific parameters are available for LinkedIn, Facebook, TikTok, Instagram, and Pinterest.
    • Pinterest: requires selecting a Board via the dynamic selector (see Selectors below).
  • Upload Video: Upload a single video to supported platforms.
    • Supports file uploads and video URLs.
    • Common parameters: User Identifier, Platform(s), Title, Description (optional), Video (File or URL), Scheduled Date (optional).
    • Title/Description overrides per platform supported as arriba.
    • YouTube: supports custom thumbnail via URL or binary (YouTube Thumbnail).
    • Platform-specific parameters are available for LinkedIn, Facebook, TikTok, Instagram, YouTube, Threads, X (Twitter), and Pinterest.
    • Pinterest: requires selecting a Board via the dynamic selector (see Selectors below).
  • Upload Text: Upload a text-based post to supported platforms.
    • Common parameters: User Identifier, Platform(s), Title (used as content for most platforms), Scheduled Date (optional).
    • Facebook: supports Facebook Link to attach a URL with link preview.
    • Platform-specific parameters are available for LinkedIn, Facebook, Threads, and X (Twitter).

Status & History Actions

  • Get Upload Status: Check the status/result of an async upload by request_id.
    • Parameters: Request ID.
  • Get Upload History: List past uploads.
    • Parameters: Page (default 1), Limit (default 20). Limit can be 20, 50, or 100.
  • Get Analytics: Retrieve aggregated analytics for uploads.
    • Optional filters: From Date, To Date, User Filter, Platforms.

Scheduled Posts

  • List Scheduled Posts: Lists future scheduled jobs.
  • Cancel Scheduled Post: Cancels a scheduled job by its Job ID.
  • Edit Scheduled Post: Updates a scheduled job (e.g., new scheduled date/time).
    • Tip: You can schedule any Upload action by providing the Scheduled Date during upload.

Platform Selectors (Dynamic)

User Actions (incl. JWT for custom platform integration)

  • ⚠️ JWT endpoints are only needed if you integrate Upload-Post into your own platform and want end-users to link their social accounts via your UI.
  • List Users: Retrieve Upload-Post profiles created under your API key.
  • Create User: Create a new user profile.
    • Parameters: New User Identifier (username).
  • Delete User: Delete an existing user profile.
    • Parameters: Username to delete.
  • Generate JWT (for platform integration): Generate a connection URL (JWT) for a given profile so the user can link social accounts.
    • Parameters: User Identifier (username). Optional branding parameters may apply server-side.
  • Validate JWT (for platform integration): Validate a connection token if you need to check it from your backend.
    • Parameters: JWT.

Refer to the Upload Post API Documentation for detailed information on parameters and platform requirements.

Waiting for asynchronous uploads

Some uploads are processed asynchronously and the API returns immediately with a request_id. This happens when:

  • You enable "Upload Asynchronously" in the node, or
  • The upload takes longer than ~59 seconds and the API switches to async mode automatically.

You have two ways to handle this in n8n:

  • Best-effort polling inside the node
  • In Upload operations (Photos/Video/Text), enable "Wait for Completion".
  • Configure "Poll Interval (Seconds)" (default 10) and "Timeout (Seconds)".
  • The node sleeps between checks (using n8n's sleep) and calls GET /api/uploadposts/status?request_id=... until success/failure or timeout.
  • Note: This does not guarantee completion in hosted environments with strict execution limits.
  • Workflow-level polling (recommended for reliability)
  • Use the Upload operation, read request_id from its output.
  • Add a Wait node (e.g., 10s), then call "Get Upload Status" passing the request_id.
  • Loop with an IF node until the status is final (success/failed) or a max attempts limit is reached.

Notable platform-specific options

  • Facebook: Media Type (Reels/Stories); Page picker; optional link for Text.
  • LinkedIn: Visibility; Organization picker; optional description override.
  • TikTok: Post Mode (Direct Post / Media Upload), privacy, duet/comment/stitch toggles.
  • Instagram: Media type (Image/Stories/Reels), video options (cover, audio, tags, etc.).
  • YouTube: Thumbnail via URL or file; description override; tags/category/privacy and related flags.
  • Threads: Description override for video; thread-related handling on backend.
  • Pinterest: Board picker; optional link; cover image options (URL/base64/key frame).

Title & Description overrides

  • Title / Main Content: generic title used across platforms.
  • Platform title overrides: [platform]_title (e.g., x_title, pinterest_title).
  • Description (Optional): generic description used across platforms when supported.
  • Platform description overrides: [platform]_description (e.g., youtube_description, linkedin_description).

Related docs:

Resources

Compatibility

Tested with n8n version 1.x. Requires Node.js version 20.15 or later.

Development

If you want to contribute to this node or run it locally for development:

  • Clone this repository: git clone https://github.com/Upload-Post/n8n-nodes-upload-post (replace your-github-username)
  • Install dependencies: npm i
  • Build the node: npm run build
  • Link the package to your n8n instance for testing. Refer to Run your node locally.

License

MIT

Keywords

n8n-community-node-package

FAQs

Package last updated on 02 Oct 2025

Did you know?

Socket

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.

Install

Related posts