Threads 비디오 다운로드하고 결과를 구글 스프레드시트에 기록
고급
이것은File Management분야의자동화 워크플로우로, 19개의 노드를 포함합니다.주로 If, Wait, FormTrigger, GoogleDrive, HttpRequest 등의 노드를 사용하며. Threads 비디오 다운로드하고 결과를 Google 스프레드시트에 기록
사전 요구사항
- •Google Drive API 인증 정보
- •대상 API의 인증 정보가 필요할 수 있음
- •Google Sheets API 인증 정보
카테고리
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"meta": {
"instanceId": "60c025075753afcab9f803964b4caaca9402f435deb4efafbb8e3b93b54d8752"
},
"nodes": [
{
"id": "a1b4a7ad-efec-4a7c-a7d0-057b01cae303",
"name": "폼 제출 시",
"type": "n8n-nodes-base.formTrigger",
"position": [
848,
592
],
"webhookId": "99c989d4-d7e6-42d9-9f05-5235e2624149",
"parameters": {
"options": {},
"formTitle": "Threads Downloader",
"formFields": {
"values": [
{
"fieldLabel": "URL",
"placeholder": "https://www.threads.net",
"requiredField": true
}
]
},
"formDescription": "Threads Downloader"
},
"typeVersion": 2.2
},
{
"id": "6510719b-49cf-4264-985b-1ed5b98b1a9f",
"name": "Threads 비디오 데이터 가져오기",
"type": "n8n-nodes-base.httpRequest",
"onError": "continueRegularOutput",
"position": [
1072,
592
],
"parameters": {
"url": "https://threads-downloader1.p.rapidapi.com/threads.php",
"method": "POST",
"options": {},
"sendBody": true,
"contentType": "multipart-form-data",
"sendHeaders": true,
"bodyParameters": {
"parameters": [
{
"name": "url",
"value": "={{ $json.URL }}"
}
]
},
"headerParameters": {
"parameters": [
{
"name": "x-rapidapi-host",
"value": "threads-downloader1.p.rapidapi.com"
},
{
"name": "x-rapidapi-key",
"value": "your key"
}
]
}
},
"typeVersion": 4.2
},
{
"id": "d069c2dc-7576-478f-8510-4beb55871bff",
"name": "비디오 존재 여부 확인",
"type": "n8n-nodes-base.if",
"position": [
1360,
608
],
"parameters": {
"options": {},
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "bcc58e3d-9609-4ec3-adb9-bc6098205818",
"operator": {
"type": "string",
"operation": "notEmpty",
"singleValue": true
},
"leftValue": "={{ $json.video_urls[0].download_url }}",
"rightValue": "success"
}
]
}
},
"typeVersion": 2.2
},
{
"id": "01d9dd0c-4370-4ecf-8df3-55de50bb09b7",
"name": "Threads 비디오 파일 다운로드",
"type": "n8n-nodes-base.httpRequest",
"position": [
1632,
320
],
"parameters": {
"url": "={{ $json.video_urls[0].download_url }}",
"options": {}
},
"typeVersion": 4.2
},
{
"id": "ddde32c8-f9dc-40cf-8180-b232bb40d6a8",
"name": "비디오를 Google 드라이브에 업로드",
"type": "n8n-nodes-base.googleDrive",
"position": [
1888,
304
],
"parameters": {
"driveId": {
"__rl": true,
"mode": "list",
"value": "My Drive"
},
"options": {},
"folderId": {
"__rl": true,
"mode": "list",
"value": "root",
"cachedResultName": "/ (Root folder)"
}
},
"credentials": {
"googleDriveOAuth2Api": {
"id": "qEkQ8MFn0uSHgAqY",
"name": "Google Drive account"
}
},
"typeVersion": 3
},
{
"id": "5e5256dd-e767-484d-8b4f-c0dc62b71f9d",
"name": "Google 드라이브 공유 권한 설정",
"type": "n8n-nodes-base.googleDrive",
"position": [
2192,
304
],
"parameters": {
"fileId": {
"__rl": true,
"mode": "id",
"value": "={{ $json.id }}"
},
"options": {},
"resource": "file",
"operation": "share",
"permissionsUi": {},
"authentication": "oAuth2"
},
"credentials": {
"googleDriveOAuth2Api": {
"id": "qEkQ8MFn0uSHgAqY",
"name": "Google Drive account"
}
},
"typeVersion": 3
},
{
"id": "da8b91e6-99c7-4d84-abfb-9358f4b1b87e",
"name": "성공 기록을 Google 시트에 로그",
"type": "n8n-nodes-base.googleSheets",
"position": [
2528,
384
],
"parameters": {
"columns": {
"value": {
"URL": "={{ $('On form submission').item.json.URL }}",
"Drive_URL": "={{ $('Upload Video to Google Drive').item.json.webViewLink }}"
},
"schema": [
{
"id": "URL",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "URL",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Drive_URL",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Drive_URL",
"defaultMatch": false,
"canBeUsedToMatch": true
}
],
"mappingMode": "defineBelow",
"matchingColumns": [
"URL"
],
"attemptToConvertTypes": false,
"convertFieldsToString": false
},
"options": {},
"operation": "append",
"sheetName": {
"__rl": true,
"mode": "url",
"value": ""
},
"documentId": {
"__rl": true,
"mode": "url",
"value": ""
},
"authentication": "serviceAccount"
},
"credentials": {
"googleApi": {
"id": "qUtlCnYpk7bXXaYp",
"name": "Google Sheets account 3"
}
},
"typeVersion": 4.6
},
{
"id": "05a6f22b-b42c-4bf8-8ad6-5e671cf33c3e",
"name": "실패 기록 전 대기",
"type": "n8n-nodes-base.wait",
"position": [
1712,
848
],
"webhookId": "410a255f-0e20-4697-9584-b59829a5bfb8",
"parameters": {},
"typeVersion": 1.1
},
{
"id": "a4554ac9-23bb-490f-b6fa-8ed9b923214b",
"name": "다운로드 실패를 Google 시트에 로그",
"type": "n8n-nodes-base.googleSheets",
"position": [
2192,
848
],
"parameters": {
"columns": {
"value": {
"URL": "{{ $('On form submission').item.json.URL }}",
"Drive_URL": "N/A"
},
"schema": [
{
"id": "URL",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "URL",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Drive_URL",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Drive_URL",
"defaultMatch": false,
"canBeUsedToMatch": true
}
],
"mappingMode": "defineBelow",
"matchingColumns": [],
"attemptToConvertTypes": false,
"convertFieldsToString": false
},
"options": {},
"operation": "append",
"sheetName": {
"__rl": true,
"mode": "url",
"value": ""
},
"documentId": {
"__rl": true,
"mode": "url",
"value": ""
},
"authentication": "serviceAccount"
},
"credentials": {
"googleApi": {
"id": "Rt0RWApx8PL9t0RF",
"name": "Google Docs account"
}
},
"typeVersion": 4.6
},
{
"id": "4ce0b5c3-f2aa-4a40-8430-5dbda2c4d791",
"name": "스티커 노트",
"type": "n8n-nodes-base.stickyNote",
"position": [
768,
464
],
"parameters": {
"height": 272,
"content": "Triggers the workflow when a user submits a URL through the form."
},
"typeVersion": 1
},
{
"id": "24997fd1-523a-46fc-8ef2-294b4fe148f3",
"name": "스티커 노트1",
"type": "n8n-nodes-base.stickyNote",
"position": [
1024,
464
],
"parameters": {
"height": 272,
"content": "Sends the submitted URL to the Threads Downloader API to retrieve video data."
},
"typeVersion": 1
},
{
"id": "6479a5f8-34a8-41aa-b252-150c08be5cb0",
"name": "스티커 노트2",
"type": "n8n-nodes-base.stickyNote",
"position": [
1296,
496
],
"parameters": {
"height": 256,
"content": "Checks if the API returned a valid video download URL."
},
"typeVersion": 1
},
{
"id": "4d12f8a3-6e47-4186-a864-944ac53f20b0",
"name": "스티커 노트3",
"type": "n8n-nodes-base.stickyNote",
"position": [
1568,
240
],
"parameters": {
"height": 240,
"content": " Downloads the video file from the provided download URL."
},
"typeVersion": 1
},
{
"id": "a4c56692-00f3-48ec-8fac-c0fa7d872212",
"name": "스티커 노트4",
"type": "n8n-nodes-base.stickyNote",
"position": [
1840,
240
],
"parameters": {
"height": 240,
"content": "Uploads the downloaded video to a specified Google Drive folder."
},
"typeVersion": 1
},
{
"id": "741dbb91-6575-4ed7-888d-548a81c017f6",
"name": "스티커 노트5",
"type": "n8n-nodes-base.stickyNote",
"position": [
2112,
240
],
"parameters": {
"height": 240,
"content": "Sets the uploaded file’s sharing settings so it’s accessible via a link."
},
"typeVersion": 1
},
{
"id": "dc7491b4-1fca-4384-b0ad-137baa4f5e42",
"name": "스티커 노트6",
"type": "n8n-nodes-base.stickyNote",
"position": [
2432,
288
],
"parameters": {
"height": 224,
"content": "Records the original URL and Google Drive link of successfully downloaded videos."
},
"typeVersion": 1
},
{
"id": "655f8026-7973-4fcd-8996-ddb074e1409c",
"name": "스티커 노트7",
"type": "n8n-nodes-base.stickyNote",
"position": [
1648,
736
],
"parameters": {
"height": 256,
"content": "Adds a pause before logging failed downloads to avoid timing issues."
},
"typeVersion": 1
},
{
"id": "23b570fb-1b5b-4af6-90e9-ff52fa18842f",
"name": "스티커 노트8",
"type": "n8n-nodes-base.stickyNote",
"position": [
2112,
752
],
"parameters": {
"height": 240,
"content": "Logs the original URL with “N/A” for failed video downloads."
},
"typeVersion": 1
},
{
"id": "72e23121-48bc-47f3-8311-3f1a7259bb5e",
"name": "스티커 노트9",
"type": "n8n-nodes-base.stickyNote",
"position": [
-256,
256
],
"parameters": {
"width": 800,
"height": 912,
"content": "# Threads Video Downloader & Google Drive Logger\n\n Automates downloading videos from Threads URLs, uploads them to Google Drive, and logs success or failure in Google Sheets.\n\n---\n\n## Workflow Overview\n\n1. **Form Submission** \n User submits a Threads URL via a web form, triggering the workflow.\n\n2. **Fetch Video Data** \n Sends the submitted URL to the Threads Downloader API to retrieve video information.\n\n3. **Check Video Availability** \n Verifies if a valid downloadable video URL is returned.\n\n4. **Download Video** \n Downloads the video from the API-provided URL.\n\n5. **Upload to Google Drive** \n Uploads the video to a designated Google Drive folder.\n\n6. **Set Sharing Permissions** \n Makes the uploaded video accessible via a shareable link.\n\n7. **Log Success** \n Records the original URL and Drive link in Google Sheets for successful downloads.\n\n8. **Handle Failures** \n Waits briefly and logs URLs with \"N/A\" in Google Sheets for failed downloads.\n"
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"a1b4a7ad-efec-4a7c-a7d0-057b01cae303": {
"main": [
[
{
"node": "6510719b-49cf-4264-985b-1ed5b98b1a9f",
"type": "main",
"index": 0
}
]
]
},
"d069c2dc-7576-478f-8510-4beb55871bff": {
"main": [
[
{
"node": "01d9dd0c-4370-4ecf-8df3-55de50bb09b7",
"type": "main",
"index": 0
}
],
[
{
"node": "05a6f22b-b42c-4bf8-8ad6-5e671cf33c3e",
"type": "main",
"index": 0
}
]
]
},
"6510719b-49cf-4264-985b-1ed5b98b1a9f": {
"main": [
[
{
"node": "d069c2dc-7576-478f-8510-4beb55871bff",
"type": "main",
"index": 0
}
]
]
},
"01d9dd0c-4370-4ecf-8df3-55de50bb09b7": {
"main": [
[
{
"node": "ddde32c8-f9dc-40cf-8180-b232bb40d6a8",
"type": "main",
"index": 0
}
]
]
},
"05a6f22b-b42c-4bf8-8ad6-5e671cf33c3e": {
"main": [
[
{
"node": "a4554ac9-23bb-490f-b6fa-8ed9b923214b",
"type": "main",
"index": 0
}
]
]
},
"ddde32c8-f9dc-40cf-8180-b232bb40d6a8": {
"main": [
[
{
"node": "5e5256dd-e767-484d-8b4f-c0dc62b71f9d",
"type": "main",
"index": 0
}
]
]
},
"5e5256dd-e767-484d-8b4f-c0dc62b71f9d": {
"main": [
[
{
"node": "da8b91e6-99c7-4d84-abfb-9358f4b1b87e",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
고급 - 파일 관리
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
Facebook 비디오를 구글 클라우드 스토리지에 다운로드하고 자동으로 테이블에 기록
Facebook 비디오를 Google 클라우드 드라이브에 다운로드하고 테이블에 자동으로 로그 기록
If
Wait
Form Trigger
+
If
Wait
Form Trigger
19 노드Sk developer
파일 관리
RapidAPI 통합을 통해 슬라이드쇼 데모文稿 다운로드 구글 클라우드 스토리지
RapidAPI 통합을 통해 Slideshare 데모文稿 다운로드
If
Wait
Form Trigger
+
If
Wait
Form Trigger
17 노드Sk developer
파일 관리
RapidAPI 통합을 통해 어떤 플랫폼 비디오도 구글 클라우드 스토리지에 다운로드
RapidAPI 통합을 통해 어떤 플랫폼의 비디오도 Google 클라우드 드라이브에 다운로드
If
Wait
Form Trigger
+
If
Wait
Form Trigger
17 노드Sk developer
파일 관리
Bilibili 비디오 다운로드 도구, Google Drive 업로드와 이메일 알림 지원
Bilibili 视频下载器,支持 Google Drive 上传및이메일알림
If
Wait
Email Send
+
If
Wait
Email Send
19 노드Sk developer
파일 관리
RapidAPI를 사용하여 LinkedIn 비디오를 MP4로 변환하고 Google Drive 및 Sheets에 저장
RapidAPI를 사용하여 LinkedIn 비디오를 MP4로 변환하고 Google Drive 및 Sheets에 저장
If
Wait
Form Trigger
+
If
Wait
Form Trigger
16 노드Sk developer
콘텐츠 제작
批量 무워터마크 TikTok 비디오 다운로드 및 추적
무워터마크 TikTok 비디오를 Google Drive에 대량으로 다운로드 및 추적
Wait
Google Drive
Http Request
+
Wait
Google Drive
Http Request
21 노드Sk developer
파일 관리