保险新闻聚合与关键词分析
高级
这是一个自动化工作流,包含 16 个节点。主要使用 If, Code, Wait, Function, HttpRequest 等节点。 通过Supabase实现保险新闻聚合、关键词分析及双数据库存储
前置要求
- •可能需要目标 API 的认证凭证
分类
-
工作流预览
可视化展示节点连接关系,支持缩放和平移
无法加载工作流预览
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
"name": "通过 Supabase 实现关键词分析与双数据库存储的保险新闻聚合",
"tags": [
"insurance",
"news",
"supabase",
"content-aggregation"
],
"nodes": [
{
"name": "便签 - 概述",
"type": "n8n-nodes-base.stickyNote",
"position": [
140,
140
],
"parameters": {
"content": ""
},
"typeVersion": 1
},
{
"name": "每 6 小时调度",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
250,
480
],
"parameters": {},
"typeVersion": 1
},
{
"name": "获取新闻源",
"type": "n8n-nodes-base.function",
"position": [
450,
480
],
"parameters": {},
"typeVersion": 1
},
{
"name": "是否为 RSS 源?",
"type": "n8n-nodes-base.if",
"position": [
650,
480
],
"parameters": {},
"typeVersion": 1
},
{
"name": "获取 RSS 源",
"type": "n8n-nodes-base.rssFeedRead",
"position": [
850,
380
],
"parameters": {},
"typeVersion": 1,
"continueOnFail": true
},
{
"name": "获取 Google 新闻 RSS",
"type": "n8n-nodes-base.rssFeedRead",
"position": [
850,
580
],
"parameters": {},
"typeVersion": 1,
"continueOnFail": true
},
{
"name": "抓取网页",
"type": "n8n-nodes-base.httpRequest",
"position": [
850,
780
],
"parameters": {},
"typeVersion": 3,
"continueOnFail": true
},
{
"name": "解析文章",
"type": "n8n-nodes-base.function",
"position": [
1050,
580
],
"parameters": {},
"typeVersion": 1,
"continueOnFail": true
},
{
"name": "获取完整文章",
"type": "n8n-nodes-base.httpRequest",
"position": [
1250,
580
],
"parameters": {},
"typeVersion": 3,
"continueOnFail": true
},
{
"name": "速率限制等待",
"type": "n8n-nodes-base.wait",
"position": [
1250,
780
],
"parameters": {},
"typeVersion": 1
},
{
"name": "提取内容与关键词",
"type": "n8n-nodes-base.code",
"position": [
1450,
580
],
"parameters": {},
"typeVersion": 1,
"continueOnFail": true
},
{
"name": "是否相关?",
"type": "n8n-nodes-base.if",
"position": [
1650,
580
],
"parameters": {},
"typeVersion": 1
},
{
"name": "存储到内容库",
"type": "n8n-nodes-base.httpRequest",
"position": [
1850,
480
],
"parameters": {},
"typeVersion": 3,
"continueOnFail": true
},
{
"name": "存储到知识库",
"type": "n8n-nodes-base.httpRequest",
"position": [
1850,
680
],
"parameters": {},
"typeVersion": 3,
"continueOnFail": true
},
{
"name": "错误处理器",
"type": "n8n-nodes-base.function",
"position": [
1450,
780
],
"parameters": {},
"typeVersion": 1
},
{
"name": "便签 - 设置",
"type": "n8n-nodes-base.stickyNote",
"position": [
560,
140
],
"parameters": {
"content": ""
},
"typeVersion": 1
}
],
"pinData": {},
"settings": {
"callerPolicy": "workflowsFromSameOwner",
"errorWorkflow": "",
"executionOrder": "v1",
"saveManualExecutions": true
},
"updatedAt": "2025-01-15T00:00:00.000Z",
"versionId": "3",
"staticData": null,
"connections": {
"Is RSS Feed?": {
"main": [
[
{
"node": "Fetch RSS Feed",
"type": "main",
"index": 0
}
],
[
{
"node": "Fetch Google News RSS",
"type": "main",
"index": 0
},
{
"node": "Scrape Web Page",
"type": "main",
"index": 0
}
]
]
},
"Is Relevant?": {
"main": [
[
{
"node": "Store in Content Library",
"type": "main",
"index": 0
},
{
"node": "Store in Knowledge Base",
"type": "main",
"index": 0
}
],
[
{
"node": "Error Handler",
"type": "main",
"index": 0
}
]
]
},
"Fetch RSS Feed": {
"main": [
[
{
"node": "Parse Articles",
"type": "main",
"index": 0
}
]
]
},
"Parse Articles": {
"main": [
[
{
"node": "Fetch Full Article",
"type": "main",
"index": 0
}
]
]
},
"Scrape Web Page": {
"main": [
[
{
"node": "Parse Articles",
"type": "main",
"index": 0
}
]
]
},
"Get News Sources": {
"main": [
[
{
"node": "Is RSS Feed?",
"type": "main",
"index": 0
}
]
]
},
"Fetch Full Article": {
"main": [
[
{
"node": "Extract Content & Keywords",
"type": "main",
"index": 0
},
{
"node": "Rate Limit Wait",
"type": "main",
"index": 0
}
]
]
},
"Fetch Google News RSS": {
"main": [
[
{
"node": "Parse Articles",
"type": "main",
"index": 0
}
]
]
},
"Schedule Every 6 Hours": {
"main": [
[
{
"node": "Get News Sources",
"type": "main",
"index": 0
}
]
]
},
"Store in Knowledge Base": {
"main": [
[]
]
},
"Store in Content Library": {
"main": [
[]
]
},
"Extract Content & Keywords": {
"main": [
[
{
"node": "Is Relevant?",
"type": "main",
"index": 0
}
]
]
}
},
"triggerCount": 1
}常见问题
如何使用这个工作流?
复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。
这个工作流适合什么场景?
高级
需要付费吗?
本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。
相关工作流推荐
企业Reddit智能参与平台
基于AI的Reddit潜在客户生成与社区管理,具备高级评分功能
If
Code
Wait
+9
52 节点Shelly-Ann Davy
使用GPT-4o、WordPress和LinkedIn发布自动化RSS内容到博客文章
使用GPT-4o、WordPress和LinkedIn发布自动化RSS内容到博客文章
If
Set
Code
+21
40 节点Immanuel
人工智能
使用AI求职信自动搜索职位
使用 Google Jobs、RemoteOK 和 GPT-3.5 自动化带AI求职信的职位搜索
If
Set
Code
+7
17 节点Shelly-Ann Davy
个人效率
从Notion自动执行客户培育邮件和评价收集
通过Telegram使用Google日历和Notion CRM自动化会议安排
If
Set
Code
+8
19 节点Shelly-Ann Davy
客服机器人
使用Groq、Gemini和Slack审批系统自动化RSS到Medium发布
通过Groq、Gemini和Slack审批系统实现RSS到Medium发布的自动化流程
If
Set
Code
+16
41 节点ObisDev
内容创作
在可视化参考库中探索n8n节点
在可视化参考库中探索n8n节点
If
Ftp
Set
+93
113 节点I versus AI
其他
工作流信息
难度等级
高级
节点数量16
分类-
节点类型8
作者
Shelly-Ann Davy
@SheCodesFlowFounder of The Workflow Muse & @SheCodesFlow. I craft elegant, task-focused automations for creators, founders, and soft-tech enthusiasts. “Automate with grace. Scale with power.”
外部链接
在 n8n.io 查看 →
分享此工作流