8
n8n 한국어amn8n.com

매일禅語励志名言을 Slack 채널로 전송

초급

이것은Personal Productivity, Multimodal AI분야의자동화 워크플로우로, 5개의 노드를 포함합니다.주로 Code, Cron, Slack, HttpRequest 등의 노드를 사용하며. 매일 ZenQuotes에서 영감을 얻은 명언을 Slack 채널로 전송

사전 요구사항
  • Slack Bot Token 또는 Webhook URL
  • 대상 API의 인증 정보가 필요할 수 있음
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
  "meta": {
    "instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc"
  },
  "nodes": [
    {
      "id": "b57d7fea-fd4d-417b-bad6-7d28d1968c6f",
      "name": "설정 안내",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        0,
        0
      ],
      "parameters": {
        "width": 280,
        "height": 200,
        "content": "⭐ **SETUP REQUIRED:**\n\n1. **Connect Slack App:**\n   - Create Slack app at api.slack.com\n   - Add OAuth scopes: chat:write, channels:read\n   - Install to workspace\n\n2. **Configure Channel:**\n   - Update channel in 'Send to Slack' node\n   - Default: #general\n\n3. **Timezone:**\n   - Workflow set to America/New_York\n   - Change in workflow settings if needed\n\n✨ Uses FREE ZenQuotes.io API - no key needed!"
      },
      "typeVersion": 1
    },
    {
      "id": "279ead2e-17c7-4e58-8d27-40b6de24e969",
      "name": "매일 오전 8시 트리거",
      "type": "n8n-nodes-base.cron",
      "position": [
        0,
        224
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "03ed9013-fc5c-4ce7-834b-1ae8f2274834",
      "name": "랜덤 명언 가져오기",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        208,
        224
      ],
      "parameters": {
        "url": "https://zenquotes.io/api/random",
        "options": {}
      },
      "typeVersion": 4.1
    },
    {
      "id": "114fc429-738a-41b7-95a6-06ccbae822b2",
      "name": "Slack용 명언 포맷팅",
      "type": "n8n-nodes-base.code",
      "position": [
        400,
        224
      ],
      "parameters": {
        "jsCode": "// Normalize quote data from API response\nconst response = $input.first().json;\nconst quoteData = Array.isArray(response) ? response[0] : response;\n\n// Format the motivational message\nconst formattedQuote = {\n  text: `🌟 *Daily Motivation* 🌟\\n\\n\"${quoteData.q || quoteData.quote || 'Stay positive and keep moving forward!'}\"\\n\\n— ${quoteData.a || quoteData.author || 'Unknown'}`,\n  channel: '#general', // Change to your preferred channel\n  username: 'MotivationBot',\n  icon_emoji: ':star2:',\n  raw_quote: quoteData.q || quoteData.quote,\n  raw_author: quoteData.a || quoteData.author\n};\n\nconsole.log('Formatted Quote:', formattedQuote);\n\nreturn {\n  json: formattedQuote\n};"
      },
      "typeVersion": 2
    },
    {
      "id": "a8598192-0075-4ea1-b1a0-8ac2ff7755d1",
      "name": "Slack로 전송",
      "type": "n8n-nodes-base.slack",
      "position": [
        608,
        224
      ],
      "webhookId": "00724f92-9755-4dd9-b88e-f6e0b5ad01b0",
      "parameters": {
        "text": "={{ $json.text }}",
        "select": "channel",
        "channelId": {
          "__rl": true,
          "mode": "name",
          "value": "general"
        },
        "otherOptions": {},
        "authentication": "oAuth2"
      },
      "typeVersion": 2.1
    }
  ],
  "pinData": {},
  "connections": {
    "279ead2e-17c7-4e58-8d27-40b6de24e969": {
      "main": [
        [
          {
            "node": "03ed9013-fc5c-4ce7-834b-1ae8f2274834",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "03ed9013-fc5c-4ce7-834b-1ae8f2274834": {
      "main": [
        [
          {
            "node": "114fc429-738a-41b7-95a6-06ccbae822b2",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "114fc429-738a-41b7-95a6-06ccbae822b2": {
      "main": [
        [
          {
            "node": "a8598192-0075-4ea1-b1a0-8ac2ff7755d1",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
자주 묻는 질문

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

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

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

초급 - 개인 생산성, 멀티모달 AI

유료인가요?

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

관련 워크플로우 추천

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

n8n 초보자를 위한 1-5개 노드의 간단한 워크플로우

저자
David Olusola

David Olusola

@dae221

I help ambitious businesses eliminate operational bottlenecks and scale faster with AI automation. My clients typically see 40-60% efficiency gains within 90 days. Currently accepting 3 new projects this quarter - david@daexai.com

외부 링크
n8n.io에서 보기

이 워크플로우 공유

카테고리

카테고리: 34