# Post Videos to TikTok, Reels, and Shorts from One Workflow

You made a short-form video. Now you need it on TikTok, Instagram Reels, YouTube Shorts, LinkedIn, Facebook, and X. Each platform has a different upload API, different authentication, and different required fields. Building separate integrations for each one takes days and breaks often.

This is one of the most requested workflows on the [n8n forum](https://community.n8n.io) and [Make.com forum](https://community.make.com). Users want one workflow that takes a video URL and publishes it everywhere. Here is how to build that.

## Why cross-platform video posting is hard without Blotato

Each platform requires a different approach:

* **TikTok** has no native module in Make.com. On n8n, the TikTok API requires developer app approval that many users report getting rejected. The upload flow requires chunked uploads and a multi-step "publish" confirmation.
* **Instagram Reels** requires the Facebook Graph API with a two-step process: create a video container, wait for processing, then publish. Video processing takes 30-120 seconds, so you need polling logic.
* **YouTube Shorts** uses the YouTube Data API v3 with OAuth2. Videos under 60 seconds with a vertical aspect ratio appear as Shorts. You need to handle `title`, `privacyStatus`, and subscriber notifications.
* **X (Twitter)** requires OAuth1 for media uploads, which n8n has deprecated. Image and video posting through n8n's native X node is broken for many users.
* **LinkedIn** has a separate video upload flow from images, requiring a pre-registered upload URL, a binary PUT request, then a post creation referencing the uploaded asset.
* **Facebook** needs a `pageId`, and video uploads go through a different endpoint than image uploads.

Building and maintaining six separate integrations means six points of failure.

## The unified approach: one API, all platforms

With the [Blotato Publish API](https://help.blotato.com/api/api-reference/publish-post), each platform publish is one POST request. The video URL goes in `mediaUrls`. Blotato handles the platform-specific upload, processing, and publishing.

Here is the request body for TikTok:

```json
{
  "post": {
    "accountId": "your-tiktok-account-id",
    "content": {
      "text": "Your caption #shorts",
      "mediaUrls": ["https://example.com/video.mp4"],
      "platform": "tiktok"
    },
    "target": {
      "targetType": "tiktok",
      "privacyLevel": "PUBLIC_TO_EVERYONE",
      "disabledComments": false,
      "disabledDuet": false,
      "disabledStitch": false,
      "isBrandedContent": false,
      "isYourBrand": false,
      "isAiGenerated": false
    }
  }
}
```

For Instagram Reels, change `platform` and `targetType` to `"instagram"` and add `"mediaType": "reel"` in the target. For YouTube Shorts, set `"youtube"` and include `title` and `privacyStatus`. Same video URL. Same API. Same authentication.

## Step-by-step: build the workflow in n8n

1. Install the [Blotato community node](https://help.blotato.com/api/n8n/n8n-blotato-node) in n8n.
2. Add a trigger (Google Sheets row, webhook, file watcher, or schedule).
3. Add one Blotato "Publish Post" node per platform. Connect them in parallel from the trigger so they all fire at the same time.
4. Configure each node with the correct `platform`, `targetType`, and `accountId`.
5. Pass the same video URL to each node's `mediaUrls` field.
6. Run the workflow.

All six platforms publish in parallel. If one fails, the others still complete.

For a video walkthrough, see: [n8n Post Everywhere](https://help.blotato.com/api/n8n/n8n-basics)

## Step-by-step: build the scenario in Make.com

1. Add a trigger module (Google Sheets, Airtable, webhook).
2. Add a Router module after the trigger.
3. Add one HTTP module per platform route, each calling `POST https://backend.blotato.com/v2/posts` with the `blotato-api-key` header.
4. Configure each HTTP module with the platform-specific request body.
5. Run the scenario.

For a blueprint and walkthrough, see: [Make AI Social Media System](https://help.blotato.com/api/make.com/make-ai-social-media-system)

## Platform-specific fields at a glance

| Platform    | `targetType` | Required target fields                                                                                                   | Video type                                |
| ----------- | ------------ | ------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------- |
| TikTok      | `tiktok`     | `privacyLevel`, `disabledComments`, `disabledDuet`, `disabledStitch`, `isBrandedContent`, `isYourBrand`, `isAiGenerated` | Video or carousel                         |
| Instagram   | `instagram`  | `mediaType: "reel"` (optional, defaults to reel for video)                                                               | Reel or Story                             |
| YouTube     | `youtube`    | `title`, `privacyStatus`, `shouldNotifySubscribers`                                                                      | Short (under 60s vertical) or long video. |
| LinkedIn    | `linkedin`   | None (add `pageId` for company pages)                                                                                    | Native video                              |
| Facebook    | `facebook`   | `pageId`                                                                                                                 | Video or Reel                             |
| X (Twitter) | `twitter`    | None                                                                                                                     | Native video                              |

## Forum threads referenced

These are the community discussions that prompted this post:

* [Automate video publishing across various social media platforms](https://community.n8n.io/t/automate-video-publishing-across-various-social-media-platforms/145003) (n8n)
* [Automate Short Form Content Posting TikTok + IG + YouTube](https://community.n8n.io/t/automate-short-form-content-posting-tiktok-ig-youtube/43009) (n8n)
* [X/Twitter OAuth1 needed to post images](https://community.n8n.io/t/x-twitter-oauth1-needed-to-post-images-with-the-x-api/77343) (n8n)
* [Automated TikTok Posting?](https://community.make.com/t/automated-tiktok-posting/46988) (Make)
* [Post Video to TikTok from Make](https://community.make.com/t/post-video-to-tiktok-from-make/82296) (Make)
* [Cross-Platform Posting Automation](https://community.make.com/t/different-videos-cross-platform-posting-automation/76539) (Make)
