여러 RSS 소스에서 데이터를 Telegram으로 가져오기
중급
이것은Building Blocks분야의자동화 워크플로우로, 11개의 노드를 포함합니다.주로 If, Cron, Function, Telegram, RssFeedRead 등의 노드를 사용하며. 여러 RSS 소스에서 데이터를 Telegram으로 가져오기
사전 요구사항
- •Telegram Bot Token
카테고리
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"nodes": [
{
"name": "RSS 피드 읽기",
"type": "n8n-nodes-base.rssFeedRead",
"position": [
420,
-20
],
"parameters": {
"url": "={{$node[\"SplitInBatches\"].json[\"url\"]}}"
},
"typeVersion": 1,
"id": "RSS--0"
},
{
"name": "배치 분할",
"type": "n8n-nodes-base.splitInBatches",
"position": [
200,
-20
],
"parameters": {
"options": {},
"batchSize": 1
},
"typeVersion": 1,
"id": "--1"
},
{
"name": "크론",
"type": "n8n-nodes-base.cron",
"position": [
-240,
-20
],
"parameters": {
"triggerTimes": {
"item": [
{
"mode": "everyX",
"unit": "minutes",
"value": 10
}
]
}
},
"typeVersion": 1,
"id": "--2"
},
{
"name": "새 RSS만 가져오기",
"type": "n8n-nodes-base.function",
"position": [
640,
-20
],
"parameters": {
"functionCode": "const staticData = getWorkflowStaticData('global');\nconst newRSSIds = items.map(item => item.json[\"isoDate\"]);\nconst oldRSSIds = staticData.oldRSSIds; \n\nif (!oldRSSIds) {\n staticData.oldRSSIds = newRSSIds;\n return items;\n}\n\n\nconst actualNewRSSIds = newRSSIds.filter((id) => !oldRSSIds.includes(id));\nconst actualNewRSS = items.filter((data) => actualNewRSSIds.includes(data.json['isoDate']));\nstaticData.oldRSSIds = [...actualNewRSSIds, ...oldRSSIds];\n\nreturn actualNewRSS;\n"
},
"typeVersion": 1,
"id": "-RSS--3"
},
{
"name": "텔레그램_IT",
"type": "n8n-nodes-base.telegram",
"position": [
1220,
460
],
"parameters": {
"text": "={{$json[\"title\"]}}\n{{$json[\"link\"]}}",
"chatId": "TelegramID",
"additionalFields": {}
},
"credentials": {
"telegramApi": {
"id": "2",
"name": "IT_RSS"
}
},
"typeVersion": 1,
"id": "-_IT-4"
},
{
"name": "텔레그램_보안",
"type": "n8n-nodes-base.telegram",
"position": [
1220,
220
],
"parameters": {
"text": "={{$json[\"title\"]}}\n{{$json[\"link\"]}}",
"chatId": "TelegramID",
"additionalFields": {}
},
"credentials": {
"telegramApi": {
"id": "4",
"name": "Security_RSS"
}
},
"typeVersion": 1,
"id": "-_--5"
},
{
"name": "RSS 소스",
"type": "n8n-nodes-base.function",
"position": [
-20,
-20
],
"parameters": {
"functionCode": "return [\n {\n json: {\n url: 'https://feeds.feedburner.com/UnikosHardware',\n }\n },\n {\n json: {\n url: 'http://www.ithome.com.tw/rss.php',\n }\n },\n {\n json: {\n url: 'http://feeds.feedburner.com/playpc',\n }\n },\n {\n json: {\n url: 'https://lab.ocf.tw/feed/',\n }\n },\n {\n json: {\n url: 'https://techcommunity.microsoft.com/plugins/custom/microsoft/o365/custom-blog-rss?tid=3754543230341459569&board=microsoft_365blog',\n }\n }\n];"
},
"typeVersion": 1,
"id": "RSS--6"
},
{
"name": "텔레그램_M365",
"type": "n8n-nodes-base.telegram",
"position": [
1220,
-40
],
"parameters": {
"text": "={{$json[\"title\"]}}\n{{$json[\"link\"]}}",
"chatId": "TelegramID",
"additionalFields": {}
},
"credentials": {
"telegramApi": {
"id": "5",
"name": "M365_RSS"
}
},
"typeVersion": 1,
"id": "-_M365-7"
},
{
"name": "IF-2",
"type": "n8n-nodes-base.if",
"position": [
880,
240
],
"parameters": {
"conditions": {
"string": [
{
"value1": "={{$json[\"title\"]}}",
"value2": "資安|資訊安全|安全|外洩|監控|威脅|漏洞|封鎖|修補|攻擊|入侵|個資|隱私|私密|騙|社交工程|釣魚|駭|Security|security|Secure|secure",
"operation": "regex"
}
]
},
"combineOperation": "any"
},
"typeVersion": 1,
"id": "IF-2-8"
},
{
"name": "IF-1",
"type": "n8n-nodes-base.if",
"position": [
880,
-20
],
"parameters": {
"conditions": {
"string": [
{
"value1": "={{$json[\"link\"]}}",
"value2": "techcommunity.microsoft.com",
"operation": "contains"
}
]
}
},
"typeVersion": 1,
"id": "IF-1-9"
},
{
"name": "초기화 함수",
"type": "n8n-nodes-base.function",
"position": [
-20,
-180
],
"parameters": {
"functionCode": "// Get the global workflow static data\nconst staticData = getWorkflowStaticData('global');\n// Update its data\nstaticData.oldRSSIds = new Date().getTime();\n// Delete data\ndelete staticData.oldRSSIds;\n\nreturn [\n {\n json: {}\n }\n]"
},
"typeVersion": 1,
"id": "--10"
}
],
"connections": {
"--2": {
"main": [
[
{
"node": "RSS--6",
"type": "main",
"index": 0
}
]
]
},
"IF-1-9": {
"main": [
[
{
"node": "-_M365-7",
"type": "main",
"index": 0
}
],
[
{
"node": "IF-2-8",
"type": "main",
"index": 0
}
]
]
},
"IF-2-8": {
"main": [
[
{
"node": "-_--5",
"type": "main",
"index": 0
}
],
[
{
"node": "-_IT-4",
"type": "main",
"index": 0
}
]
]
},
"RSS--6": {
"main": [
[
{
"node": "--1",
"type": "main",
"index": 0
}
]
]
},
"RSS--0": {
"main": [
[
{
"node": "--1",
"type": "main",
"index": 0
},
{
"node": "-RSS--3",
"type": "main",
"index": 0
}
]
]
},
"--1": {
"main": [
[
{
"node": "RSS--0",
"type": "main",
"index": 0
}
]
]
},
"-RSS--3": {
"main": [
[
{
"node": "IF-1-9",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 빌딩 블록
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
Notion 데이터베이스에서 빈 페이지 아카이빙
Notion 데이터베이스에서 빈 페이지 아카이빙
If
Cron
Notion
+
If
Cron
Notion
10 노드Jonathan
빌딩 블록
n8n_check
RSS, 이메일 및 Telegram을 통해 새로운 n8n 주요 버전 출시 자동 알림
If
Cron
Aws Ses
+
If
Cron
Aws Ses
7 노드Miquel Colomer
엔지니어링
GPT-4o, WordPress, LinkedIn을 사용한 RSS 콘텐츠 자동 블로그 게시
GPT-4o, WordPress 및 LinkedIn을 사용한 RSS 콘텐츠 블로그 게시물 자동 발행
If
Set
Code
+
If
Set
Code
40 노드Immanuel
인공지능
우아한 콘텐츠 자극 — RSS → Notion (n8n)
RSS 소스를 일일 콘텐츠 아이디어로 정리하고, 이메일로 전송하여 Notion과 Telegram 옵션 지원
If
Set
Cron
+
If
Set
Cron
20 노드Shelly-Ann Davy
콘텐츠 제작
Telegram 텍스트 출력
LLM 출력을 텍스트 메시지로 변환하여 Telegram 메시지로 전환——자동 미디어 처리와 지능적 블록화
If
Code
Limit
+
If
Code
Limit
19 노드Dmitry Mikheev
기타
[템플릿] AI 반려동물 가게 v8
🐶 AI 펫 샵 어시스턴트 - GPT-4o, Google 캘린더 및 WhatsApp/Instagram/Facebook 통합
If
N8n
Set
+
If
N8n
Set
244 노드Amanda Benks
영업