使用 Gemini Pro 生成内容创意并存储到 Google Sheets
初级
这是一个Design, AI, Marketing领域的自动化工作流,包含 4 个节点。主要使用 Function, Google-ai, ManualInput, Google-sheets 等节点,结合人工智能技术实现智能自动化。 使用Gemini Pro生成内容创意并存储到Google表格
前置要求
- •AI 服务 API Key(如 OpenAI、Anthropic 等)
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
"id": "content-idea-generator",
"name": "使用 Gemini Pro 生成内容创意并存储到 Google Sheets",
"tags": [
"marketing",
"ai",
"content-creation",
"google-sheets",
"beginner"
],
"nodes": [
{
"id": "manual-input",
"name": "手动输入",
"type": "n8n-nodes-base.manualInput",
"position": [
200,
200
],
"parameters": {
"description": "手动输入您想要生成内容创意的主题或关键词。在 JSON 输入中添加一个名为 'topic' 的字段(例如:{\"topic\": \"您的期望主题\"})。"
},
"typeVersion": 1
},
{
"id": "google-ai",
"name": "生成创意 (Google AI)",
"type": "n8n-nodes-base.google-ai",
"position": [
450,
200
],
"parameters": {
"model": "gemini-pro",
"prompt": "Generate 5 content ideas related to the topic: {{ $json.topic }}. Please format each idea as a short sentence or title.",
"operation": "generateContent",
"description": "使用 Google AI 模型 (Gemini Pro) 根据 '手动输入' 节点提供的主题生成内容创意。需要在 n8n 中设置 Google AI 凭据。",
"additionalParameters": {}
},
"credentials": {
"googleAiApi": "YOUR_GOOGLE_AI_CREDENTIALS"
},
"typeVersion": 1
},
{
"id": "format-ideas",
"name": "格式化创意",
"type": "n8n-nodes-base.function",
"position": [
700,
200
],
"parameters": {
"jsCode": "return items.map(item => {\n const ideas = item.json.candidates[0].content.parts[0].text.split('\\n').filter(idea => idea.trim() !== '');\n return ideas.map(idea => ({ json: { idea: idea.trim() } }));\n}).flat();",
"description": "处理 '生成创意 (Google AI)' 节点的原始文本输出。它将生成的创意(预期为换行分隔)拆分为单独的项目,使其准备好作为单独行写入 Google Sheets。"
},
"typeVersion": 1
},
{
"id": "google-sheets",
"name": "写入 Google Sheet",
"type": "n8n-nodes-base.google-sheets",
"position": [
950,
200
],
"parameters": {
"range": "Sheet1!A:A",
"values": "={{ $json.idea }}",
"options": {},
"operation": "append",
"description": "将每个格式化的内容创意(来自 '格式化创意' 节点)作为新行追加到指定的 Google Sheet。请记得将 'YOUR_GOOGLE_SHEET_ID' 替换为您实际的 Google Sheet ID,并连接您的 Google Sheets OAuth2 凭据。",
"spreadsheetId": "YOUR_GOOGLE_SHEET_ID"
},
"credentials": {
"googleSheetsOAuth2Api": "YOUR_GOOGLE_SHEETS_CREDENTIALS"
},
"typeVersion": 1
}
],
"active": false,
"events": {},
"folder": null,
"pinData": {},
"settings": {},
"timeZone": "Europe/Berlin",
"createdAt": "2025-05-27T00:00:00.000Z",
"updatedAt": "2025-05-27T00:00:00.000Z",
"versionId": null,
"staticData": null,
"connections": {
"google-ai": {
"main": [
[
{
"node": "format-ideas",
"type": "main",
"index": 0
}
]
]
},
"format-ideas": {
"main": [
[
{
"node": "google-sheets",
"type": "main",
"index": 0
}
]
]
},
"manual-input": {
"main": [
[
{
"node": "google-ai",
"type": "main",
"index": 0
}
]
]
}
},
"description": "A beginner-friendly marketing workflow that uses AI (Google AI) to generate content ideas based on a given topic and then saves these ideas into a Google Sheet for easy organization and planning. This n8n workflow template uses community nodes and is only compatible with the self-hosted version of n8n.",
"triggerCount": 0
}常见问题
如何使用这个工作流?
复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。
这个工作流适合什么场景?
初级 - 设计, 人工智能, 营销
需要付费吗?
本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。
相关工作流推荐
使用关键词在 X 和其他社交媒体平台发布最新新闻
使用关键词和 Bright Data 通过 AI 内容生成自动发布最新新闻到 X
If
Code
Wait
+8
16 节点Dvir Sharon
设计
自动发现和分析TikTok影响者并发送邮件通知
使用Bright Data、Claude AI和邮件推广发现和分析TikTok影响者
Code
Wait
Gmail
+7
22 节点Dvir Sharon
人工智能
图像生成器
通过Google云端硬盘和表格实现AI图像生成与Telegram交付的自动化流程
Telegram
Google Drive
Http Request
+6
11 节点David Olusola
设计
将轮播/幻灯片内容自动发布到所有社交平台
AI驱动轮播帖文,通过Blotato发布到Instagram、LinkedIn和Twitter
Set
Wait
Http Request
+6
23 节点David Olusola
设计
AI驱动的YouTube短视频自动化:使用OpenAI和ElevenLabs创建与发布
AI驱动的YouTube Shorts创建器(OpenAI脚本与ElevenLabs语音)
If
Set
Wait
+15
76 节点WIKIPILOT
设计
使用Dumpling AI和GPT-4o从YouTube视频自动生成博客和AI图片
使用Dumpling AI和GPT-4o从YouTube视频自动生成博客和AI图片
Airtable
Google Drive
Http Request
+4
10 节点Yang
设计