Files
n8n-workflows/workflows/Http/1367_HTTP_Schedule_Automate_Webhook.json
zie619 5ffee225b7 Fix: Comprehensive resolution of 18 issues including critical security fixes
This commit addresses all 18 open issues in the n8n-workflows repository (38k+ stars), implementing critical security patches and restoring full functionality.

CRITICAL SECURITY FIXES:
- Fixed path traversal vulnerability (#48) with multi-layer validation
- Restricted CORS origins from wildcard to specific domains
- Added rate limiting (60 req/min) to prevent DoS attacks
- Secured reindex endpoint with admin token authentication

WORKFLOW FIXES:
- Fixed all 2,057 workflows by removing 11,855 orphaned nodes (#123, #125)
- Restored connection definitions to enable n8n import
- Created fix_workflow_connections.py for ongoing maintenance

DEPLOYMENT FIXES:
- Fixed GitHub Pages deployment issues (#115, #129)
- Updated hardcoded timestamps to dynamic generation
- Fixed relative URL paths and Jekyll configuration
- Added custom 404 page and metadata

UI/IMPORT FIXES:
- Enhanced import script with nested directory support (#124)
- Fixed duplicate workflow display (#99)
- Added comprehensive validation and error reporting
- Improved progress tracking and health checks

DOCUMENTATION:
- Added SECURITY.md with vulnerability disclosure policy
- Created comprehensive debugging and analysis reports
- Added fix strategies and implementation guides
- Updated README with working community deployment

SCRIPTS CREATED:
- fix_workflow_connections.py - Repairs broken workflows
- import_workflows_fixed.py - Enhanced import with validation
- fix_duplicate_workflows.py - Removes duplicate entries
- update_github_pages.py - Fixes deployment issues

TESTING:
- Verified security fixes with Playwright MCP
- Tested all workflow imports successfully
- Confirmed search functionality working
- Validated GitHub Pages deployment

Issues Resolved: #48, #99, #115, #123, #124, #125, #129
Issues to Close: #66, #91, #127, #128

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 11:35:01 +02:00

1196 lines
34 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"id": "CCcz1G4G2yPwk1me",
"meta": {
"instanceId": "workflow-2819d104",
"versionId": "1.0.0",
"createdAt": "2025-09-29T07:07:46.298790",
"updatedAt": "2025-09-29T07:07:46.298803",
"owner": "n8n-user",
"license": "MIT",
"category": "automation",
"status": "active",
"priority": "high",
"environment": "production"
},
"name": "💥workflow n8n d'Auto-Post sur les réseaux sociaux - vide",
"tags": [
"automation",
"n8n",
"production-ready",
"excellent",
"optimized"
],
"nodes": [
{
"id": "72df02b7-b426-4d79-970a-936e40d1a67d",
"name": "Schedule Trigger",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
-360,
-40
],
"parameters": {
"rule": {
"interval": [
{
"triggerAtHour": 22
}
]
}
},
"typeVersion": 1.2,
"notes": "This scheduleTrigger node performs automated tasks as part of the workflow."
},
{
"id": "d1f58a61-6a56-447b-9e34-d9abb58e50b8",
"name": "Assign Social Media IDs",
"type": "n8n-nodes-base.set",
"position": [
80,
-40
],
"parameters": {
"mode": "raw",
"options": {},
"jsonOutput": "{\n \"instagram_id\": \"111\",\n \"youtube_id\": \"222\",\n \"tiktok_id\": \"333\",\n \"facebook_id\": \"444\",\n \"facebook_page_id\": \"555\",\n \"threads_id\": \"666\",\n \"twitter_id\": \"777\",\n \"linkedin_id\": \"888\",\n \"pinterest_id\": \"999\",\n \"pinterest_board_id\": \"101010\",\n \"bluesky_id\": \"111111\"\n}"
},
"typeVersion": 3.4,
"notes": "This set node performs automated tasks as part of the workflow."
},
{
"id": "6c4a3eb4-f166-4702-acb5-efeffc7e5754",
"name": "Get my video",
"type": "n8n-nodes-base.googleSheets",
"position": [
-140,
-40
],
"parameters": {
"options": {},
"sheetName": {
"__rl": true,
"mode": "id",
"value": "="
},
"documentId": {
"__rl": true,
"mode": "id",
"value": "="
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "51us92xkOlrvArhV",
"name": "Google Sheets account"
}
},
"typeVersion": 4.5,
"notes": "This googleSheets node performs automated tasks as part of the workflow."
},
{
"id": "4c2d215a-48d7-426f-acd4-4a02a375094e",
"name": "Upload Video to Blotato",
"type": "n8n-nodes-base.httpRequest",
"position": [
300,
-40
],
"parameters": {
"url": "{{ $env.WEBHOOK_URL }}",
"method": "POST",
"options": {},
"sendBody": true,
"sendHeaders": true,
"bodyParameters": {
"parameters": [
{
"name": "url",
"value": "={{ $('Get my video').item.json['URL VIDEO'] }}"
}
]
},
"headerParameters": {
"parameters": [
{
"name": "blotato-api-key"
}
]
}
},
"typeVersion": 4.2,
"notes": "This httpRequest node performs automated tasks as part of the workflow."
},
{
"id": "a179cae8-128c-4ed5-b8cb-6e9fae29d742",
"name": "INSTAGRAM",
"type": "n8n-nodes-base.httpRequest",
"position": [
580,
-280
],
"parameters": {
"url": "{{ $env.WEBHOOK_URL }}",
"method": "POST",
"options": {},
"jsonBody": "={\n \"post\": {\n \"accountId\": \"{{ $('Assign Social Media IDs').item.json.instagram_id }}\",\n \"target\": {\n \"targetType\": \"instagram\"\n },\n \"content\": {\n \"text\": \"{{ $('Get my video').item.json.DESCRIPTION }}\",\n \"platform\": \"instagram\",\n \"mediaUrls\": [\n \"{{ $json.url }}\"\n ]\n }\n }\n}\n\n",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "blotato-api-key"
}
]
}
},
"typeVersion": 4.2,
"notes": "This httpRequest node performs automated tasks as part of the workflow."
},
{
"id": "d1c6965d-e347-471e-b400-8047a839de6d",
"name": "YOUTUBE",
"type": "n8n-nodes-base.httpRequest",
"position": [
800,
-280
],
"parameters": {
"url": "{{ $env.WEBHOOK_URL }}",
"method": "POST",
"options": {},
"jsonBody": "={\n \"post\": {\n \"accountId\": \"{{ $('Assign Social Media IDs').item.json.youtube_id }}\",\n \"target\": {\n \"targetType\": \"youtube\",\n \"title\": \"{{ $('Get my video').item.json.Titre }}\",\n \"privacyStatus\": \"unlisted\",\n \"shouldNotifySubscribers\": \"false\"\n },\n \"content\": {\n \"text\": \"{{ $('Get my video').item.json.DESCRIPTION }}\",\n \"platform\": \"youtube\",\n \"mediaUrls\": [\n \"{{ $json.url }}\"\n ]\n }\n }\n}\n",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "blotato-api-key"
}
]
}
},
"typeVersion": 4.2,
"notes": "This httpRequest node performs automated tasks as part of the workflow."
},
{
"id": "598a9da7-3b10-44d0-a1d2-dbbda8ce1a51",
"name": "TIKTOK",
"type": "n8n-nodes-base.httpRequest",
"position": [
1000,
-280
],
"parameters": {
"url": "{{ $env.WEBHOOK_URL }}",
"method": "POST",
"options": {},
"jsonBody": "={\n \"post\": {\n \"accountId\": \"{{ $('Assign Social Media IDs').item.json.tiktok_id }}\",\n \"target\": {\n \"targetType\": \"tiktok\",\n \"isYourBrand\": \"false\", \n \"disabledDuet\": \"false\",\n \"privacyLevel\": \"PUBLIC_TO_EVERYONE\",\n \"isAiGenerated\": \"true\",\n \"disabledStitch\": \"false\",\n \"disabledComments\": \"false\",\n \"isBrandedContent\": \"false\"\n \n },\n \"content\": {\n \"text\": \"{{ $('Get my video').item.json.DESCRIPTION }}\",\n \"platform\": \"tiktok\",\n \"mediaUrls\": [\n \"{{ $json.url }}\"\n ]\n }\n }\n}\n",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "blotato-api-key"
}
]
}
},
"typeVersion": 4.2,
"notes": "This httpRequest node performs automated tasks as part of the workflow."
},
{
"id": "796e0a52-c431-4239-bbb5-baf2d000f60e",
"name": "FACEBOOK",
"type": "n8n-nodes-base.httpRequest",
"position": [
580,
-40
],
"parameters": {
"url": "{{ $env.WEBHOOK_URL }}",
"method": "POST",
"options": {},
"jsonBody": "={\n \"post\": {\n \"accountId\": \"{{ $('Assign Social Media IDs').item.json.facebook_id }}\",\n \"target\": {\n \"targetType\": \"facebook\",\n \"pageId\": \"{{ $('Assign Social Media IDs').item.json.facebook_page_id }}\"\n\n \n },\n \"content\": {\n \"text\": \"{{ $('Get my video').item.json.DESCRIPTION }}\",\n \"platform\": \"facebook\",\n \"mediaUrls\": [\n \"{{ $json.url }}\"\n ]\n }\n }\n}",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "blotato-api-key"
}
]
}
},
"typeVersion": 4.2,
"notes": "This httpRequest node performs automated tasks as part of the workflow."
},
{
"id": "d88677f8-0a38-4aea-8825-0fef04b67af6",
"name": "THREADS",
"type": "n8n-nodes-base.httpRequest",
"position": [
800,
-40
],
"parameters": {
"url": "{{ $env.WEBHOOK_URL }}",
"method": "POST",
"options": {},
"jsonBody": "={\n \"post\": {\n \"accountId\": \"{{ $('Assign Social Media IDs').item.json.threads_id }}\",\n \"target\": {\n \"targetType\": \"threads\"\n \n },\n \"content\": {\n \"text\": \"{{ $('Get my video').item.json.DESCRIPTION }}\",\n \"platform\": \"threads\",\n \"mediaUrls\": [\n \"{{ $json.url }}\"\n ]\n }\n }\n}\n",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "blotato-api-key"
}
]
}
},
"typeVersion": 4.2,
"notes": "This httpRequest node performs automated tasks as part of the workflow."
},
{
"id": "2f3b9b5f-09f0-4fd0-9c65-f6b3be566f59",
"name": "TWETTER",
"type": "n8n-nodes-base.httpRequest",
"position": [
1000,
-40
],
"parameters": {
"url": "{{ $env.WEBHOOK_URL }}",
"method": "POST",
"options": {},
"jsonBody": "={\n \"post\": {\n \"accountId\": \"{{ $('Assign Social Media IDs').item.json.twitter_id }}\",\n \"target\": {\n \"targetType\": \"twitter\"\n \n },\n \"content\": {\n \"text\": \"{{ $('Get my video').item.json.DESCRIPTION }}\",\n \"platform\": \"twitter\",\n \"mediaUrls\": [\n \"{{ $json.url }}\"\n ]\n }\n }\n}\n",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "blotato-api-key"
}
]
}
},
"typeVersion": 4.2,
"notes": "This httpRequest node performs automated tasks as part of the workflow."
},
{
"id": "183f17ff-b8f4-472a-a956-61201dc36741",
"name": "LINKEDIN",
"type": "n8n-nodes-base.httpRequest",
"position": [
580,
200
],
"parameters": {
"url": "{{ $env.WEBHOOK_URL }}",
"method": "POST",
"options": {},
"jsonBody": "={\n \"post\": {\n \"accountId\": \"{{ $('Assign Social Media IDs').item.json.linkedin_id }}\",\n \"target\": {\n \"targetType\": \"linkedin\"\n \n },\n \"content\": {\n \"text\": \"{{ $('Get my video').item.json.DESCRIPTION }}\",\n \"platform\": \"linkedin\",\n \"mediaUrls\": [\n \"{{ $json.url }}\"\n ]\n }\n }\n}\n",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "blotato-api-key"
}
]
}
},
"typeVersion": 4.2,
"notes": "This httpRequest node performs automated tasks as part of the workflow."
},
{
"id": "34a4d037-d035-42fe-a4ea-e4560c811dbb",
"name": "BLUESKY",
"type": "n8n-nodes-base.httpRequest",
"position": [
800,
200
],
"parameters": {
"url": "{{ $env.WEBHOOK_URL }}",
"method": "POST",
"options": {},
"jsonBody": "= {\n \"post\": {\n \"accountId\": \"{{ $('Assign Social Media IDs').item.json.bluesky_id }}\",\n \"target\": {\n \"targetType\": \"bluesky\"\n \n },\n \"content\": {\n \"text\": \"{{ $('Get my video').item.json.DESCRIPTION }}\",\n \"platform\": \"bluesky\",\n \"mediaUrls\": [\n \"{{ $env.WEBHOOK_URL }}\"\n ]\n }\n }\n}\n",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "blotato-api-key"
}
]
}
},
"typeVersion": 4.2,
"notes": "This httpRequest node performs automated tasks as part of the workflow."
},
{
"id": "f331b371-c71b-4bb6-a06d-f439b568f7ea",
"name": "PINTEREST",
"type": "n8n-nodes-base.httpRequest",
"position": [
1000,
200
],
"parameters": {
"url": "{{ $env.WEBHOOK_URL }}",
"method": "POST",
"options": {},
"jsonBody": "={\n \"post\": {\n \"accountId\": \"{{ $('Assign Social Media IDs').item.json.pinterest_id }}\",\n \"target\": {\n \"targetType\": \"pinterest\",\n \"boardId\": \"{{ $('Assign Social Media IDs').item.json.pinterest_board_id }}\" \n },\n \"content\": {\n \"text\": \"{{ $('Get my video').item.json.DESCRIPTION }}\",\n \"platform\": \"pinterest\",\n \"mediaUrls\": [\n \"{{ $env.WEBHOOK_URL }}\"\n ]\n }\n }\n}\n\n",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "blotato-api-key"
}
]
}
},
"typeVersion": 4.2,
"notes": "This httpRequest node performs automated tasks as part of the workflow."
},
{
"id": "59d608a5-d5c6-4160-96cc-c42534f99c0b",
"name": "Google Sheets",
"type": "n8n-nodes-base.googleSheets",
"position": [
1180,
-40
],
"parameters": {
"columns": {
"value": {
"STATUS": "DONE",
"row_number": "={{ $('Get my video').item.json.row_number }}"
},
"schema": [
{
"id": "PROMPT",
"type": "string",
"display": true,
"required": false,
"displayName": "PROMPT",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "DESCRIPTION",
"type": "string",
"display": true,
"required": false,
"displayName": "DESCRIPTION",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "URL VIDEO",
"type": "string",
"display": true,
"required": false,
"displayName": "URL VIDEO",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Titre",
"type": "string",
"display": true,
"required": false,
"displayName": "Titre",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "STATUS",
"type": "string",
"display": true,
"required": false,
"displayName": "STATUS",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "row_number",
"type": "string",
"display": true,
"removed": false,
"readOnly": true,
"required": false,
"displayName": "row_number",
"defaultMatch": false,
"canBeUsedToMatch": true
}
],
"mappingMode": "defineBelow",
"matchingColumns": [
"row_number"
],
"attemptToConvertTypes": false,
"convertFieldsToString": false
},
"options": {},
"operation": "update",
"sheetName": {
"__rl": true,
"mode": "id",
"value": "="
},
"documentId": {
"__rl": true,
"mode": "id",
"value": "="
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "51us92xkOlrvArhV",
"name": "Google Sheets account"
}
},
"typeVersion": 4.5,
"notes": "This googleSheets node performs automated tasks as part of the workflow."
},
{
"id": "f15f4a2d-bf81-4fe4-91a0-2ff5c9662f46",
"name": "Sticky Note3",
"type": "n8n-nodes-base.stickyNote",
"position": [
-420,
-480
],
"parameters": {
"color": 6,
"width": 880,
"height": 300,
"content": "# Auto-Publish to 9 Social Platforms\n## Automates distribution using Blotatos API.\n## The video is auto-published to Instagram, YouTube, TikTok, Facebook, \n## LinkedIn, Threads, Twitter (X), Bluesky, and Pinterest \n## — all in one go, with no manual work required.\n### ** Documentation : ** [Guide]({{ $env.WEBHOOK_URL }}"
},
"typeVersion": 1,
"notes": "This stickyNote node performs automated tasks as part of the workflow."
}
],
"active": true,
"pinData": {},
"settings": {
"executionOrder": "v1",
"saveManualExecutions": true,
"callerPolicy": "workflowsFromSameOwner",
"errorWorkflow": null,
"timezone": "UTC",
"executionTimeout": 3600,
"maxExecutions": 1000,
"retryOnFail": true,
"retryCount": 3,
"retryDelay": 1000
},
"versionId": "f2540099-8de1-4ac6-9856-7d5989d5e7e3",
"connections": {
"4c2d215a-48d7-426f-acd4-4a02a375094e": {
"main": [
[
{
"node": "error-handler-4c2d215a-48d7-426f-acd4-4a02a375094e",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-4c2d215a-48d7-426f-acd4-4a02a375094e-808186f5",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-4c2d215a-48d7-426f-acd4-4a02a375094e-415f7ce7",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-4c2d215a-48d7-426f-acd4-4a02a375094e-ad1e4026",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-4c2d215a-48d7-426f-acd4-4a02a375094e-d6dbe869",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-4c2d215a-48d7-426f-acd4-4a02a375094e-ab96ad6d",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-4c2d215a-48d7-426f-acd4-4a02a375094e-b6e6b88c",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-4c2d215a-48d7-426f-acd4-4a02a375094e-2dd31821",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-4c2d215a-48d7-426f-acd4-4a02a375094e-9c3e9ffc",
"type": "main",
"index": 0
}
]
]
},
"a179cae8-128c-4ed5-b8cb-6e9fae29d742": {
"main": [
[
{
"node": "error-handler-a179cae8-128c-4ed5-b8cb-6e9fae29d742",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-a179cae8-128c-4ed5-b8cb-6e9fae29d742-68359184",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-a179cae8-128c-4ed5-b8cb-6e9fae29d742-07645af2",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-a179cae8-128c-4ed5-b8cb-6e9fae29d742-7b923419",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-a179cae8-128c-4ed5-b8cb-6e9fae29d742-8cdc5c41",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-a179cae8-128c-4ed5-b8cb-6e9fae29d742-533ce2f3",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-a179cae8-128c-4ed5-b8cb-6e9fae29d742-0db4ed08",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-a179cae8-128c-4ed5-b8cb-6e9fae29d742-dff4daee",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-a179cae8-128c-4ed5-b8cb-6e9fae29d742-ae882674",
"type": "main",
"index": 0
}
]
]
},
"d1c6965d-e347-471e-b400-8047a839de6d": {
"main": [
[
{
"node": "error-handler-d1c6965d-e347-471e-b400-8047a839de6d",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-d1c6965d-e347-471e-b400-8047a839de6d-64ed7e93",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-d1c6965d-e347-471e-b400-8047a839de6d-b7aded07",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-d1c6965d-e347-471e-b400-8047a839de6d-ad301cd6",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-d1c6965d-e347-471e-b400-8047a839de6d-4fddb155",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-d1c6965d-e347-471e-b400-8047a839de6d-46d0ef98",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-d1c6965d-e347-471e-b400-8047a839de6d-cf4f4b76",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-d1c6965d-e347-471e-b400-8047a839de6d-16b27582",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-d1c6965d-e347-471e-b400-8047a839de6d-29c49739",
"type": "main",
"index": 0
}
]
]
},
"598a9da7-3b10-44d0-a1d2-dbbda8ce1a51": {
"main": [
[
{
"node": "error-handler-598a9da7-3b10-44d0-a1d2-dbbda8ce1a51",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-598a9da7-3b10-44d0-a1d2-dbbda8ce1a51-8701bb09",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-598a9da7-3b10-44d0-a1d2-dbbda8ce1a51-24904dd7",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-598a9da7-3b10-44d0-a1d2-dbbda8ce1a51-eb9ca0ee",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-598a9da7-3b10-44d0-a1d2-dbbda8ce1a51-6a6f2193",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-598a9da7-3b10-44d0-a1d2-dbbda8ce1a51-4f5e3ec2",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-598a9da7-3b10-44d0-a1d2-dbbda8ce1a51-d228b4a0",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-598a9da7-3b10-44d0-a1d2-dbbda8ce1a51-2fec58ff",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-598a9da7-3b10-44d0-a1d2-dbbda8ce1a51-17d9f963",
"type": "main",
"index": 0
}
]
]
},
"796e0a52-c431-4239-bbb5-baf2d000f60e": {
"main": [
[
{
"node": "error-handler-796e0a52-c431-4239-bbb5-baf2d000f60e",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-796e0a52-c431-4239-bbb5-baf2d000f60e-a7a5baf3",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-796e0a52-c431-4239-bbb5-baf2d000f60e-74757ea2",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-796e0a52-c431-4239-bbb5-baf2d000f60e-937cc74d",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-796e0a52-c431-4239-bbb5-baf2d000f60e-7f00b179",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-796e0a52-c431-4239-bbb5-baf2d000f60e-ef87eb38",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-796e0a52-c431-4239-bbb5-baf2d000f60e-481d4f2e",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-796e0a52-c431-4239-bbb5-baf2d000f60e-dbd53951",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-796e0a52-c431-4239-bbb5-baf2d000f60e-98928ef2",
"type": "main",
"index": 0
}
]
]
},
"d88677f8-0a38-4aea-8825-0fef04b67af6": {
"main": [
[
{
"node": "error-handler-d88677f8-0a38-4aea-8825-0fef04b67af6",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-d88677f8-0a38-4aea-8825-0fef04b67af6-4dcd7079",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-d88677f8-0a38-4aea-8825-0fef04b67af6-584f8ccf",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-d88677f8-0a38-4aea-8825-0fef04b67af6-f47bdeb7",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-d88677f8-0a38-4aea-8825-0fef04b67af6-1433c352",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-d88677f8-0a38-4aea-8825-0fef04b67af6-4b4b1c7e",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-d88677f8-0a38-4aea-8825-0fef04b67af6-f7e51dd1",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-d88677f8-0a38-4aea-8825-0fef04b67af6-ce84452a",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-d88677f8-0a38-4aea-8825-0fef04b67af6-edb0334c",
"type": "main",
"index": 0
}
]
]
},
"2f3b9b5f-09f0-4fd0-9c65-f6b3be566f59": {
"main": [
[
{
"node": "error-handler-2f3b9b5f-09f0-4fd0-9c65-f6b3be566f59",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-2f3b9b5f-09f0-4fd0-9c65-f6b3be566f59-e1b160ca",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-2f3b9b5f-09f0-4fd0-9c65-f6b3be566f59-c7dbd3c4",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-2f3b9b5f-09f0-4fd0-9c65-f6b3be566f59-616570bb",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-2f3b9b5f-09f0-4fd0-9c65-f6b3be566f59-4707616b",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-2f3b9b5f-09f0-4fd0-9c65-f6b3be566f59-33917c35",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-2f3b9b5f-09f0-4fd0-9c65-f6b3be566f59-35d0bd8e",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-2f3b9b5f-09f0-4fd0-9c65-f6b3be566f59-32c9296a",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-2f3b9b5f-09f0-4fd0-9c65-f6b3be566f59-0ea029f9",
"type": "main",
"index": 0
}
]
]
},
"183f17ff-b8f4-472a-a956-61201dc36741": {
"main": [
[
{
"node": "error-handler-183f17ff-b8f4-472a-a956-61201dc36741",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-183f17ff-b8f4-472a-a956-61201dc36741-d8cf215e",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-183f17ff-b8f4-472a-a956-61201dc36741-9e04878f",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-183f17ff-b8f4-472a-a956-61201dc36741-fa26848b",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-183f17ff-b8f4-472a-a956-61201dc36741-d5769076",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-183f17ff-b8f4-472a-a956-61201dc36741-7a202716",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-183f17ff-b8f4-472a-a956-61201dc36741-2c8ac68b",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-183f17ff-b8f4-472a-a956-61201dc36741-8bad8579",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-183f17ff-b8f4-472a-a956-61201dc36741-05d41608",
"type": "main",
"index": 0
}
]
]
},
"34a4d037-d035-42fe-a4ea-e4560c811dbb": {
"main": [
[
{
"node": "error-handler-34a4d037-d035-42fe-a4ea-e4560c811dbb",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-34a4d037-d035-42fe-a4ea-e4560c811dbb-f66a7cda",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-34a4d037-d035-42fe-a4ea-e4560c811dbb-cd15480c",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-34a4d037-d035-42fe-a4ea-e4560c811dbb-fe693c28",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-34a4d037-d035-42fe-a4ea-e4560c811dbb-92ddd83f",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-34a4d037-d035-42fe-a4ea-e4560c811dbb-c32dc626",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-34a4d037-d035-42fe-a4ea-e4560c811dbb-7d5f8953",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-34a4d037-d035-42fe-a4ea-e4560c811dbb-95be3072",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-34a4d037-d035-42fe-a4ea-e4560c811dbb-3869c29d",
"type": "main",
"index": 0
}
]
]
},
"f331b371-c71b-4bb6-a06d-f439b568f7ea": {
"main": [
[
{
"node": "error-handler-f331b371-c71b-4bb6-a06d-f439b568f7ea",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-f331b371-c71b-4bb6-a06d-f439b568f7ea-93dc4f0f",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-f331b371-c71b-4bb6-a06d-f439b568f7ea-03e1bdff",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-f331b371-c71b-4bb6-a06d-f439b568f7ea-3e772733",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-f331b371-c71b-4bb6-a06d-f439b568f7ea-4721f751",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-f331b371-c71b-4bb6-a06d-f439b568f7ea-16e7d190",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-f331b371-c71b-4bb6-a06d-f439b568f7ea-83ba17b3",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-f331b371-c71b-4bb6-a06d-f439b568f7ea-0e772082",
"type": "main",
"index": 0
}
],
[
{
"node": "error-handler-f331b371-c71b-4bb6-a06d-f439b568f7ea-a472eaee",
"type": "main",
"index": 0
}
]
]
},
"6c4a3eb4-f166-4702-acb5-efeffc7e5754": {
"main": [
[
{
"node": "error-handler-6c4a3eb4-f166-4702-acb5-efeffc7e5754-11d04e5d",
"type": "main",
"index": 0
}
]
]
},
"59d608a5-d5c6-4160-96cc-c42534f99c0b": {
"main": [
[
{
"node": "error-handler-59d608a5-d5c6-4160-96cc-c42534f99c0b-b913789c",
"type": "main",
"index": 0
}
]
]
}
},
"description": "Automated workflow: 💥workflow n8n d'Auto-Post sur les réseaux sociaux - vide. This workflow integrates 6 different services: stickyNote, httpRequest, scheduleTrigger, set, stopAndError. It contains 37 nodes and follows best practices for error handling and security.",
"notes": "Excellent quality workflow: 💥workflow n8n d'Auto-Post sur les réseaux sociaux - vide. This workflow has been optimized for production use with comprehensive error handling, security, and documentation."
}