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
أضف أعمدة لرابط الفيديو، والعنوان، والحالة
-
أنشئ أتمتة
اختر "عند إنشاء السجل" والإجراء "تشغيل سكربت"
-
ألصق كود المثال
استبدل 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('رابط الفيديو');
// 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('العنوان'));
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' : 'فشل'
}); متقدم: قالب N8n مع الذكاء الاصطناعي وAirtable
سير عمل نشر الفيديوهات تلقائيًا
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 للعثور على فيديوهات جديدة
- إنشاء أوصاف AI باستخدام OpenAI
- ينشر على منصات متعددة في وقت واحد
- يتتبع الحالة وعناوين URL في Airtable
- يرسل إشعارات الأخطاء عبر Telegram
المتطلبات:
- تثبيت N8n (سحابي أو مستضاف ذاتيًا)
- حسابات Google Drive و OpenAI و Airtable
- الوصول إلى واجهة برمجة التطبيقات Upload-Post.com
- حسابات وسائل التواصل الاجتماعي المتصلة
خطوات سير العمل
كشف الفيديو
يكتشف تلقائيًا الفيديوهات الجديدة المرفوعة إلى مجلد Google Drive الخاص بك
توليد المحتوى الذكي
يستخدم OpenAI لتحويل الصوت إلى نص وإنشاء أوصاف جذابة
تتبع Airtable
ينشئ سجلات مع بيانات الفيديو ويتتبع حالة النشر
نشر متعدد المنصات
يتم التحميل في نفس الوقت إلى Instagram و TikTok و YouTube عبر Upload-Post
هيكل قاعدة Airtable
| اسم الحقل | Type | وصف |
|---|---|---|
| اسم الفيديو | نص سطر واحد | اسم ملف الفيديو |
| وصف | نص طويل | وصف مولد بالذكاء الاصطناعي |
| تاريخ التحميل | Date | عندما تم معالجة الفيديو |
| حالة Instagram | اختيار واحد | نجاح، فشل، قيد الانتظار |
| حالة تيك توك | اختيار واحد | نجاح، فشل، قيد الانتظار |
| حالة يوتيوب | اختيار واحد | نجاح، فشل، قيد الانتظار |
| روابط المنصة | نص طويل | عناوين 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 تحتاج إلى مزيد من التفاصيل؟
For complete API reference, advanced options, and troubleshooting:
تحتاج مساعدة في تكاملك؟
[email protected]