8
n8n 한국어amn8n.com

AI 게스트 포스트 생성기와 OpenAI 및 Google Sheets 자동화

중급

이것은Content Creation, Multimodal AI분야의자동화 워크플로우로, 7개의 노드를 포함합니다.주로 If, Set, OpenAi, GoogleSheets, ManualTrigger 등의 노드를 사용하며. AI 게스트 포스트 생성기와 OpenAI 및 Google Sheets 자동화

사전 요구사항
  • OpenAI API Key
  • Google Sheets API 인증 정보
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
  "meta": {
    "instanceId": "a93c2d1221e546a84f92e07ce458d71f828e250bc33a25fc5481e8d9db0e3c2f"
  },
  "tags": [],
  "nodes": [
    {
      "id": "ff9ed5e3-49e0-41ed-a10b-10ac380c0b47",
      "name": "시작 트리거",
      "type": "n8n-nodes-base.manualTrigger",
      "position": [
        200,
        300
      ],
      "typeVersion": 1
    },
    {
      "id": "0058cd43-e14f-4a4c-b15e-c04f569c8c70",
      "name": "플래닝 시트 읽기",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        400,
        300
      ],
      "parameters": {
        "range": "Planning!A1:E1000",
        "sheetId": "1PiygWwVov4WzA8qvUOaZ9N1G9JgtgmpYy0w8ty3CHd0",
        "operation": "lookup",
        "returnAllMatches": true
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "id": "1",
          "name": "Google Sheets account"
        }
      },
      "typeVersion": 4
    },
    {
      "id": "b3082328-2ab1-4857-b3fa-7db55f89160d",
      "name": "상태 = 시작 필터링",
      "type": "n8n-nodes-base.if",
      "position": [
        600,
        300
      ],
      "parameters": {
        "conditions": {
          "string": [
            {
              "value1": "={{$json[\"Status\"]}}",
              "value2": "Start",
              "operation": "equals"
            }
          ]
        }
      },
      "typeVersion": 1
    },
    {
      "id": "f8b0b56b-e580-4b67-9871-4a9c3bb92446",
      "name": "프롬프트 포맷팅",
      "type": "n8n-nodes-base.set",
      "position": [
        800,
        300
      ],
      "parameters": {
        "values": {
          "string": [
            {
              "name": "prompt",
              "value": "Write a guest post in German about the topic '{{ $json.Topic }}'. Include this note: '{{ $json.Note }}'"
            }
          ]
        },
        "keepOnlySet": true
      },
      "typeVersion": 2
    },
    {
      "id": "a95b45a5-b84e-43a0-ae53-2c2854e317d4",
      "name": "OpenAI - 포스트 생성",
      "type": "n8n-nodes-base.openAi",
      "position": [
        1000,
        300
      ],
      "parameters": {
        "model": "text-davinci-003",
        "prompt": "={{$json[\"prompt\"]}}",
        "resource": "completion",
        "maxTokens": 1000,
        "temperature": 0.7
      },
      "credentials": {
        "openAiApi": {
          "id": "2",
          "name": "OpenAI account"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "96de9e63-5680-4db5-9936-65e33ff73c95",
      "name": "시트에 포스트 저장",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        1200,
        300
      ],
      "parameters": {
        "range": "Generated!A1:C1",
        "sheetId": "1PiygWwVov4WzA8qvUOaZ9N1G9JgtgmpYy0w8ty3CHd0",
        "operation": "append",
        "dataToSend": "autoMapInputData"
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "id": "1",
          "name": "Google Sheets account"
        }
      },
      "typeVersion": 4
    },
    {
      "id": "d5bc4074-7ab1-4a0e-85cb-5c61792b53a9",
      "name": "완료로 표시",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        1400,
        300
      ],
      "parameters": {
        "key": "={{$json.rowIndex}}",
        "range": "Planning!E:E",
        "options": {
          "valueInputOption": "RAW"
        },
        "sheetId": "1PiygWwVov4WzA8qvUOaZ9N1G9JgtgmpYy0w8ty3CHd0",
        "operation": "update",
        "dataToSend": {
          "values": [
            {
              "value": "Finished",
              "column": "Status"
            }
          ]
        }
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "id": "1",
          "name": "Google Sheets account"
        }
      },
      "typeVersion": 4
    }
  ],
  "settings": {},
  "connections": {
    "f8b0b56b-e580-4b67-9871-4a9c3bb92446": {
      "main": [
        [
          {
            "node": "a95b45a5-b84e-43a0-ae53-2c2854e317d4",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "ff9ed5e3-49e0-41ed-a10b-10ac380c0b47": {
      "main": [
        [
          {
            "node": "0058cd43-e14f-4a4c-b15e-c04f569c8c70",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "96de9e63-5680-4db5-9936-65e33ff73c95": {
      "main": [
        [
          {
            "node": "d5bc4074-7ab1-4a0e-85cb-5c61792b53a9",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "0058cd43-e14f-4a4c-b15e-c04f569c8c70": {
      "main": [
        [
          {
            "node": "b3082328-2ab1-4857-b3fa-7db55f89160d",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "b3082328-2ab1-4857-b3fa-7db55f89160d": {
      "main": [
        [
          {
            "node": "f8b0b56b-e580-4b67-9871-4a9c3bb92446",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "a95b45a5-b84e-43a0-ae53-2c2854e317d4": {
      "main": [
        [
          {
            "node": "96de9e63-5680-4db5-9936-65e33ff73c95",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
자주 묻는 질문

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

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

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

중급 - 콘텐츠 제작, 멀티모달 AI

유료인가요?

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

워크플로우 정보
난이도
중급
노드 수7
카테고리2
노드 유형5
난이도 설명

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

저자
Juan de Dios Estrella Sáez

Juan de Dios Estrella Sáez

@juanestrella

Hi 👋 I’m Juan de Dios. I turn manual work into automated systems using n8n & Make, so you can focus on what really matters. I share my workflows, tips, and templates so you can start automating too. Got a question? I’m just a comment away

외부 링크
n8n.io에서 보기

이 워크플로우 공유

카테고리

카테고리: 34