統合ガイド

Upload-Post + Airtable Integration

Post videos to social media directly from Airtable using Upload-Post\'s API. Automate your content publishing workflow in minutes.

Airtable Logo + Upload-Postロゴ

Airtable\'s Automation Scripts allow you to trigger workflows when events happen in your base. By integrating with Upload-Post\'s API, you can automatically publish videos to platforms like TikTok, Instagram, and YouTube whenever a new record is created or updated.

Instagram
TikTok
YouTube
Facebook
LinkedIn

クイックスタート例

3 Simple Steps

  1. Airtableに動画テーブルを作成

    Video URL、タイトル、ステータスの列を追加

  2. 自動化を作成

    "レコード作成時"を選択し、アクション"スクリプトを実行"を選択してください

  3. サンプルコードを貼り付けてください

    API_KEYとUSERNAMEをあなたの資格情報に置き換えてください

サンプルコード

// Basic Airtable to Upload-Post Integration
// Get the record that triggered this automation
let table = base.getTable('Videos');
let record = await table.selectRecordAsync(input.config().recordId);

// Get video URL from Airtable record
let videoUrl = record.getCellValue('ビデオURL');

// Upload to social media via Upload-Post
let formData = new FormData();

// Add the video URL (API will download it automatically)
formData.append('video_url', videoUrl);

// Add metadata
formData.append('title', record.getCellValue('Title'));
formData.append('user', 'YOUR_USERNAME');

// Add platforms - you can add multiple platforms
formData.append('platform[]', 'tiktok');
formData.append('platform[]', 'instagram');
formData.append('platform[]', 'youtube');
formData.append('platform[]', 'facebook');
formData.append('platform[]', 'linkedin');

// Send to Upload-Post API
let result = await fetch('https://api.upload-post.com/api/upload', {
  method: 'POST',
  headers: { '認可': 'APIキー YOUR_API_KEY' },
  body: formData
});

// Update the record with result
let uploadResult = await result.json();
await table.updateRecordAsync(record, {
  'ステータス': uploadResult.success ? 'Uploaded' : '失敗しました'
});
Scroll para ver el código completo
今、動画のURLをAPIに直接渡すことができます - それは自動的に動画をダウンロードし、ソーシャルプラットフォームにアップロードする前に裏で処理します。

高度な: AIとAirtableを使用したN8nテンプレート

N8n Logo + Airtable Logo + Upload-Postロゴ

自動化された動画公開ワークフロー

This powerful n8n workflow automatically detects new videos in Google Drive, generates AI-powered descriptions, publishes to Instagram, TikTok & YouTube, and tracks everything in Airtable.

何をするのか:

  • 新しい動画のためにGoogle Driveを監視
  • OpenAIを使用してAI説明を生成
  • 複数のプラットフォームに同時に公開する
  • AirtableでのステータスとURLを追跡
  • Telegramを介してエラーノーティフィケーションを送信します

要件:

  • N8nのインストール(クラウドまたはセルフホスト)
  • Google Drive、OpenAI、Airtableアカウント
  • Upload-Post.com APIアクセス
  • 接続されたソーシャルメディアアカウント

ワークフローステップ

1

動画検出

Google Driveフォルダーにアップロードされた新しい動画を自動的に検出

2

AIコンテンツ生成

OpenAIを使用して音声を文字起こし、魅力的な説明を生成します

3

Airtableトラッキング

動画メタデータを持つレコードを作成し、公開状況を追跡

4

マルチプラットフォーム出版

Upload-Postを介してInstagram、TikTok、YouTubeに同時にアップロードします

Airtableベース構造

フィールド名 Type 説明
ビデオ名 単一行テキスト 動画ファイルの名前
説明 Long text AI生成の説明文
アップロード日 Date ビデオが処理された時
Instagramステータス Single select 成功、失敗、保留
TikTokステータス Single select 成功、失敗、保留
YouTubeステータス Single select 成功、失敗、保留
プラットフォームのURL Long text 公開コンテンツのURL

使用準備が整ったテンプレート

Get the complete n8n workflow template with all configurations and setup instructions.

次のような方に最適: Content creators, social media managers, and marketing teams who want to automate their entire video publishing workflow from upload to distribution.

APIリファレンス

エンドポイント

POST https://api.upload-post.com/api/upload

curl Example

curl \
  -H '認可: Apikey your-api-key-here' \
  -F 'video=@/path/to/your/video.mp4' \
  -F 'title="あなたの動画タイトル"' \
  -F 'user="test"' \
  -F 'platform[]=tiktok' \
  -F 'platform[]=facebook' \
  -F 'platform[]=linkedin' \
  -X POST https://api.upload-post.com/api/upload

詳細が必要ですか?

For complete API reference, advanced options, and troubleshooting:

Complete Documentation

統合に関して助けが必要ですか?

[email protected]