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에 비디오 테이블 생성
비디오 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 | 비디오가 처리되었을 때 |
| 인스타그램 상태 | 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 '권한 부여: API 키 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]