8
n8n 한국어amn8n.com

뉴스 릴리스를 Techeela 웹사이트에 게시

중급

이것은Marketing분야의자동화 워크플로우로, 9개의 노드를 포함합니다.주로 Set, Code, Wordpress, HttpRequest, RssFeedReadTrigger 등의 노드를 사용하며. RSS로 WordPress에 특징 이미지가 포함된 뉴스 릴리스 자동 게시

사전 요구사항
  • 대상 API의 인증 정보가 필요할 수 있음

카테고리

워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
  "id": "88x49jmELpXBXgy8",
  "meta": {
    "instanceId": "ca7e4439d37f2d7ddaa363ea2b029357e1ee59824d58b9533ac05bf57f803d9d",
    "templateCredsSetupCompleted": true
  },
  "name": "PR news post to Techeela Website",
  "tags": [],
  "nodes": [
    {
      "id": "c762fb88-f496-4ff6-80fc-3da2047096d6",
      "name": "RSS 피드 트리거",
      "type": "n8n-nodes-base.rssFeedReadTrigger",
      "position": [
        0,
        0
      ],
      "parameters": {
        "feedUrl": "",
        "pollTimes": {
          "item": [
            {
              "mode": "everyMinute"
            }
          ]
        }
      },
      "typeVersion": 1
    },
    {
      "id": "572e403a-ee70-46ee-ac24-45faf8fe1d98",
      "name": "Wordpress",
      "type": "n8n-nodes-base.wordpress",
      "position": [
        440,
        0
      ],
      "parameters": {
        "title": "={{ $json.title }}",
        "additionalFields": {
          "format": "standard",
          "status": "draft",
          "content": "={{ $json.content }}",
          "authorId": 3,
          "categories": [
            1057
          ],
          "postTemplate": {
            "values": {}
          }
        }
      },
      "credentials": {
        "wordpressApi": {
          "id": "",
          "name": ""
        }
      },
      "typeVersion": 1
    },
    {
      "id": "2ff6ba75-5c55-4203-a670-f6688acf8520",
      "name": "코드",
      "type": "n8n-nodes-base.code",
      "position": [
        220,
        0
      ],
      "parameters": {
        "jsCode": "const items = $input.all();\nconst updatedItems = items.map((item) => {\n  const content = item?.json?.content;\n  const srcMatch = content.match(/src=\"(.*?)\"/);\n  item.json.imageSrc = srcMatch ? srcMatch[1] : \"\";\n  return item;\n});\nreturn updatedItems;\n"
      },
      "typeVersion": 2
    },
    {
      "id": "1c0c60e0-0f1f-4f64-9186-5640599f62a7",
      "name": "Wordpress에 이미지 업로드",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        1040,
        0
      ],
      "parameters": {
        "url": "https://xyz.com/wp-json/wp/v2/media",
        "method": "POST",
        "options": {},
        "sendBody": true,
        "contentType": "binaryData",
        "sendHeaders": true,
        "authentication": "predefinedCredentialType",
        "headerParameters": {
          "parameters": [
            {
              "name": "Content-Disposition",
              "value": "=attachment; filename=\"cover-image-{{ $('Wordpress').item.json.id }}.jpeg\""
            }
          ]
        },
        "inputDataFieldName": "data",
        "nodeCredentialType": "wordpressApi"
      },
      "credentials": {
        "wordpressApi": {
          "id": "",
          "name": "Wordpress Account"
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "38326346-0f38-4491-b786-ee1e06b65f96",
      "name": "Wordpress 게시물에 이미지 설정",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        1240,
        0
      ],
      "parameters": {
        "url": "=https://xyz.com/wp-json/wp/v2/posts/{{ $('Wordpress').item.json.id }}",
        "method": "POST",
        "options": {},
        "sendQuery": true,
        "authentication": "predefinedCredentialType",
        "queryParameters": {
          "parameters": [
            {
              "name": "featured_media",
              "value": "={{ $json.id }}"
            }
          ]
        },
        "nodeCredentialType": "wordpressApi"
      },
      "credentials": {
        "wordpressApi": {
          "id": "",
          "name": "Wordpress Account"
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "45505c71-ff36-4f4c-be2c-bf705ae0a902",
      "name": "이미지 가져오기",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        840,
        0
      ],
      "parameters": {
        "url": "={{ $json['image-url'] }}",
        "options": {}
      },
      "typeVersion": 4.2
    },
    {
      "id": "6f1ff8bc-622d-49bb-a172-bf23b6e1baa3",
      "name": "메모1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        200,
        -80
      ],
      "parameters": {
        "width": 1240,
        "height": 280,
        "content": "## Set Image and Content In Techeela Wordpress Post"
      },
      "typeVersion": 1
    },
    {
      "id": "8272d49e-cf24-43a0-b948-db29adf5a95f",
      "name": "이미지 URL 설정",
      "type": "n8n-nodes-base.set",
      "position": [
        640,
        0
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "1f0541df-05ab-4e3d-a5d8-3904579fc8a9",
              "name": "image-url",
              "type": "string",
              "value": "={{ $('Code').item.json.imageSrc }}"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "f6685e58-6c23-495d-9b75-a8066eab8829",
      "name": "메모",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -120,
        -80
      ],
      "parameters": {
        "color": 4,
        "width": 280,
        "height": 280,
        "content": "## Feed from PR Newswire\n"
      },
      "typeVersion": 1
    }
  ],
  "active": true,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "71481a3f-f3d0-45aa-b039-5f2cdb2e5267",
  "connections": {
    "2ff6ba75-5c55-4203-a670-f6688acf8520": {
      "main": [
        [
          {
            "node": "572e403a-ee70-46ee-ac24-45faf8fe1d98",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "45505c71-ff36-4f4c-be2c-bf705ae0a902": {
      "main": [
        [
          {
            "node": "1c0c60e0-0f1f-4f64-9186-5640599f62a7",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "572e403a-ee70-46ee-ac24-45faf8fe1d98": {
      "main": [
        [
          {
            "node": "8272d49e-cf24-43a0-b948-db29adf5a95f",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "8272d49e-cf24-43a0-b948-db29adf5a95f": {
      "main": [
        [
          {
            "node": "45505c71-ff36-4f4c-be2c-bf705ae0a902",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "c762fb88-f496-4ff6-80fc-3da2047096d6": {
      "main": [
        [
          {
            "node": "2ff6ba75-5c55-4203-a670-f6688acf8520",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "1c0c60e0-0f1f-4f64-9186-5640599f62a7": {
      "main": [
        [
          {
            "node": "38326346-0f38-4491-b786-ee1e06b65f96",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
자주 묻는 질문

이 워크플로우를 어떻게 사용하나요?

위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.

이 워크플로우는 어떤 시나리오에 적합한가요?

중급 - 마케팅

유료인가요?

이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.

워크플로우 정보
난이도
중급
노드 수9
카테고리1
노드 유형6
난이도 설명

일정 경험을 가진 사용자를 위한 6-15개 노드의 중간 복잡도 워크플로우

저자
Digvijay Dubey

Digvijay Dubey

@digvijay

Results-driven developer with expertise in automation, system integration, and CRM solutions. Skilled in building efficient workflows with n8n, integrating platforms like WordPress, Zoho CRM, and APIs to streamline business processes. Passionate about solving real-world problems with clean, scalable, and automated solutions.

외부 링크
n8n.io에서 보기

이 워크플로우 공유

카테고리

카테고리: 34