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\'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.
クイックスタート例
3 Simple Steps
-
Airtableに動画テーブルを作成
Video URL、タイトル、ステータスの列を追加
-
自動化を作成
"レコード作成時"を選択し、アクション"スクリプトを実行"を選択してください
-
サンプルコードを貼り付けてください
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' : '失敗しました'
}); 高度な: AIとAirtableを使用したN8nテンプレート
自動化された動画公開ワークフロー
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アクセス
- 接続されたソーシャルメディアアカウント
ワークフローステップ
動画検出
Google Driveフォルダーにアップロードされた新しい動画を自動的に検出
AIコンテンツ生成
OpenAIを使用して音声を文字起こし、魅力的な説明を生成します
Airtableトラッキング
動画メタデータを持つレコードを作成し、公開状況を追跡
マルチプラットフォーム出版
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.
APIリファレンス
エンドポイント
POSThttps://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 統合に関して助けが必要ですか?
[email protected]