8
n8n 中文网amn8n.com

我的工作流 2

中级

这是一个Lead Generation, AI Summarization领域的自动化工作流,包含 10 个节点。主要使用 Code, ScheduleTrigger, ScrapegraphAi 等节点。 基于Eventbrite的会议网络情报,使用ScrapeGraphAI

前置要求
  • 无特殊前置要求,导入即可使用
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
  "id": "VhEwspDqzu7ssFVE",
  "meta": {
    "instanceId": "f4b0efaa33080e7774e0d9285c40c7abcd2c6f7cf1a8b901fa7106170dd4cda3",
    "templateCredsSetupCompleted": true
  },
  "name": "我的工作流 2",
  "tags": [
    {
      "id": "DxXGubfBzRKh6L8T",
      "name": "Revenue Optimization",
      "createdAt": "2025-07-25T16:24:30.370Z",
      "updatedAt": "2025-07-25T16:24:30.370Z"
    },
    {
      "id": "IxkcJ2IpYIxivoHV",
      "name": "Content Strategy",
      "createdAt": "2025-07-25T12:57:37.677Z",
      "updatedAt": "2025-07-25T12:57:37.677Z"
    },
    {
      "id": "PAKIJ2Mm9EvRcR3u",
      "name": "Trend Monitoring",
      "createdAt": "2025-07-25T12:57:37.670Z",
      "updatedAt": "2025-07-25T12:57:37.670Z"
    },
    {
      "id": "YtfXmaZk44MYedPO",
      "name": "Dynamic Pricing",
      "createdAt": "2025-07-25T16:24:30.369Z",
      "updatedAt": "2025-07-25T16:24:30.369Z"
    }
  ],
  "nodes": [
    {
      "id": "1963915b-9fa6-4f49-83e5-21b4f6f7dc42",
      "name": "计划触发器",
      "type": "n8n-nodes-base.scheduleTrigger",
      "position": [
        -1696,
        912
      ],
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "weeks"
            }
          ]
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "f310faab-de2c-4897-a1f5-d89358f8da9c",
      "name": "会议爬取器",
      "type": "n8n-nodes-scrapegraphai.scrapegraphAi",
      "position": [
        -1120,
        976
      ],
      "parameters": {
        "userPrompt": "Extract conference information from this page. Use the following schema for response: { \"conference_name\": \"Tech Summit 2024\", \"date\": \"2024-08-15\", \"location\": \"San Francisco, CA\", \"venue\": \"Moscone Center\", \"description\": \"Annual technology conference\", \"ticket_price\": \"$299\", \"organizer\": \"Tech Events Inc\", \"website_url\": \"https://example.com/conference\", \"registration_url\": \"https://example.com/register\", \"categories\": [\"Technology\", \"Business\"], \"estimated_attendees\": \"500-1000\" }",
        "websiteUrl": "https://www.eventbrite.com/d/ca--san-francisco/business-conferences/"
      },
      "typeVersion": 1
    },
    {
      "id": "1cd36fc6-f574-4cb7-8595-48a6aa953b59",
      "name": "演讲者分析器",
      "type": "n8n-nodes-scrapegraphai.scrapegraphAi",
      "position": [
        -560,
        976
      ],
      "parameters": {
        "userPrompt": "Extract speaker information from this conference website. Use the following schema: { \"speakers\": [{ \"name\": \"John Doe\", \"title\": \"CEO\", \"company\": \"Tech Corp\", \"bio\": \"Tech industry veteran\", \"linkedin_url\": \"https://linkedin.com/in/johndoe\", \"session_title\": \"Future of AI\", \"session_time\": \"10:00 AM\", \"session_track\": \"Main Stage\", \"expertise_areas\": [\"AI\", \"Machine Learning\"], \"contact_priority\": \"High\" }] }",
        "websiteUrl": "={{ $json.website_url }}"
      },
      "typeVersion": 1
    },
    {
      "id": "32918675-9362-4528-9fbf-69c91ef2fd7c",
      "name": "议程解析器",
      "type": "n8n-nodes-scrapegraphai.scrapegraphAi",
      "position": [
        -32,
        960
      ],
      "parameters": {
        "userPrompt": "Extract the conference agenda and schedule. Use this schema: { \"agenda\": [{ \"time\": \"09:00 AM\", \"session_title\": \"Opening Keynote\", \"speaker\": \"Jane Smith\", \"track\": \"Main Stage\", \"duration\": \"60 minutes\", \"session_type\": \"Keynote\", \"topics\": [\"Industry Trends\"], \"networking_break\": false, \"location\": \"Hall A\" }], \"networking_opportunities\": [{ \"type\": \"Coffee Break\", \"time\": \"10:30 AM\", \"duration\": \"30 minutes\", \"location\": \"Lobby\" }] }",
        "websiteUrl": "={{ $('Conference Scraper').item.json.website_url }}"
      },
      "typeVersion": 1
    },
    {
      "id": "fe3d63f8-2557-4e94-a810-aaff115bd8e0",
      "name": "社交机会发现器",
      "type": "n8n-nodes-base.code",
      "notes": "AI-powered analysis of\nnetworking opportunities\nand strategic contacts",
      "position": [
        656,
        960
      ],
      "parameters": {
        "jsCode": "// Get all input data\nconst conferenceData = $('Conference Scraper').item.json;\nconst speakerData = $('Speaker Analyzer').item.json;\nconst agendaData = $('Agenda Parser').item.json;\n\n// Analyze networking opportunities\nfunction analyzeNetworkingOpportunities(conference, speakers, agenda) {\n  const opportunities = [];\n  \n  // Extract high-priority speakers\n  const highPrioritySpeakers = speakers.speakers?.filter(s => s.contact_priority === 'High') || [];\n  \n  // Find networking breaks and coffee sessions\n  const networkingTimes = agenda.networking_opportunities || [];\n  \n  // Identify strategic sessions to attend\n  const strategicSessions = agenda.agenda?.filter(session => \n    session.session_type === 'Panel' || \n    session.session_type === 'Workshop' ||\n    session.topics?.some(topic => ['AI', 'Innovation', 'Strategy', 'Leadership'].includes(topic))\n  ) || [];\n  \n  // Generate networking recommendations\n  highPrioritySpeakers.forEach(speaker => {\n    opportunities.push({\n      type: 'Speaker Meeting',\n      target: speaker.name,\n      company: speaker.company,\n      session: speaker.session_title,\n      time: speaker.session_time,\n      priority: 'High',\n      reason: `Industry expert in ${speaker.expertise_areas?.join(', ')}`,\n      approach: `Attend their session: \"${speaker.session_title}\" and approach during Q&A or after`,\n      linkedin: speaker.linkedin_url\n    });\n  });\n  \n  // Add general networking opportunities\n  networkingTimes.forEach(netTime => {\n    opportunities.push({\n      type: 'General Networking',\n      time: netTime.time,\n      duration: netTime.duration,\n      location: netTime.location,\n      priority: 'Medium',\n      approach: 'Casual conversations with attendees'\n    });\n  });\n  \n  return {\n    conference_overview: {\n      name: conference.conference_name,\n      date: conference.date,\n      location: conference.location,\n      estimated_attendees: conference.estimated_attendees\n    },\n    networking_opportunities: opportunities,\n    strategic_sessions: strategicSessions,\n    key_speakers: highPrioritySpeakers,\n    total_opportunities: opportunities.length\n  };\n}\n\n// Process the data\nconst analysis = analyzeNetworkingOpportunities(conferenceData, speakerData, agendaData);\n\nconsole.log(`Found ${analysis.total_opportunities} networking opportunities`);\n\nreturn [{ json: analysis }];"
      },
      "notesInFlow": true,
      "typeVersion": 2
    },
    {
      "id": "298e8dc7-5d9d-4c73-a363-c67569573a2f",
      "name": "便签 1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1904,
        496
      ],
      "parameters": {
        "color": 4,
        "width": 575,
        "height": 674,
        "content": "# 步骤1:每周触发器 ⏰"
      },
      "typeVersion": 1
    },
    {
      "id": "115330c1-e0bf-45db-b3d3-479dda41d6a0",
      "name": "便签 2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1328,
        496
      ],
      "parameters": {
        "color": 4,
        "width": 575,
        "height": 674,
        "content": "# 步骤2:会议发现 🔍"
      },
      "typeVersion": 1
    },
    {
      "id": "a366cc72-9fce-4b2d-adeb-1f3a0dfa6894",
      "name": "便签 3",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -752,
        496
      ],
      "parameters": {
        "color": 4,
        "width": 575,
        "height": 674,
        "content": "# 步骤3:演讲者智能分析 🎤"
      },
      "typeVersion": 1
    },
    {
      "id": "4a20f389-ea9d-4e6f-8182-75e808c28081",
      "name": "便签 4",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -176,
        496
      ],
      "parameters": {
        "color": 4,
        "width": 575,
        "height": 674,
        "content": "# 步骤4:议程分析 📅"
      },
      "typeVersion": 1
    },
    {
      "id": "b1207fca-d339-469b-aebd-b3f9160cc234",
      "name": "便利贴 5",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        400,
        496
      ],
      "parameters": {
        "color": 4,
        "width": 575,
        "height": 674,
        "content": "# 步骤5:社交策略AI 🤝"
      },
      "typeVersion": 1
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "54507b17-8ae6-466a-ab83-aa6b0a00b24d",
  "connections": {
    "Agenda Parser": {
      "main": [
        [
          {
            "node": "Networking Opportunity Finder",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Schedule Trigger": {
      "main": [
        [
          {
            "node": "Conference Scraper",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Speaker Analyzer": {
      "main": [
        [
          {
            "node": "Agenda Parser",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Conference Scraper": {
      "main": [
        [
          {
            "node": "Speaker Analyzer",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
常见问题

如何使用这个工作流?

复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。

这个工作流适合什么场景?

中级 - 潜在客户开发, AI 摘要总结

需要付费吗?

本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。

工作流信息
难度等级
中级
节点数量10
分类2
节点类型4
难度说明

适合有一定经验的用户,包含 6-15 个节点的中等复杂度工作流

外部链接
在 n8n.io 查看

分享此工作流