AIゲスト記事ジェネレーターとOpenAI及びGoogle Sheets自動化
中級
これはContent Creation, Multimodal AI分野の自動化ワークフローで、7個のノードを含みます。主にIf, Set, OpenAi, GoogleSheets, ManualTriggerなどのノードを使用。 AIゲスト記事ジェネレーターとOpenAI及びGoogle Sheets自動化
前提条件
- •OpenAI API Key
- •Google Sheets API認証情報
使用ノード (7)
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"meta": {
"instanceId": "a93c2d1221e546a84f92e07ce458d71f828e250bc33a25fc5481e8d9db0e3c2f"
},
"tags": [],
"nodes": [
{
"id": "ff9ed5e3-49e0-41ed-a10b-10ac380c0b47",
"name": "開始トリガー",
"type": "n8n-nodes-base.manualTrigger",
"position": [
200,
300
],
"typeVersion": 1
},
{
"id": "0058cd43-e14f-4a4c-b15e-c04f569c8c70",
"name": "計画シートの読み込み",
"type": "n8n-nodes-base.googleSheets",
"position": [
400,
300
],
"parameters": {
"range": "Planning!A1:E1000",
"sheetId": "1PiygWwVov4WzA8qvUOaZ9N1G9JgtgmpYy0w8ty3CHd0",
"operation": "lookup",
"returnAllMatches": true
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "1",
"name": "Google Sheets account"
}
},
"typeVersion": 4
},
{
"id": "b3082328-2ab1-4857-b3fa-7db55f89160d",
"name": "ステータス = Start でフィルタリング",
"type": "n8n-nodes-base.if",
"position": [
600,
300
],
"parameters": {
"conditions": {
"string": [
{
"value1": "={{$json[\"Status\"]}}",
"value2": "Start",
"operation": "equals"
}
]
}
},
"typeVersion": 1
},
{
"id": "f8b0b56b-e580-4b67-9871-4a9c3bb92446",
"name": "プロンプトの整形",
"type": "n8n-nodes-base.set",
"position": [
800,
300
],
"parameters": {
"values": {
"string": [
{
"name": "prompt",
"value": "Write a guest post in German about the topic '{{ $json.Topic }}'. Include this note: '{{ $json.Note }}'"
}
]
},
"keepOnlySet": true
},
"typeVersion": 2
},
{
"id": "a95b45a5-b84e-43a0-ae53-2c2854e317d4",
"name": "OpenAI - Generate Post",
"type": "n8n-nodes-base.openAi",
"position": [
1000,
300
],
"parameters": {
"model": "text-davinci-003",
"prompt": "={{$json[\"prompt\"]}}",
"resource": "completion",
"maxTokens": 1000,
"temperature": 0.7
},
"credentials": {
"openAiApi": {
"id": "2",
"name": "OpenAI account"
}
},
"typeVersion": 1
},
{
"id": "96de9e63-5680-4db5-9936-65e33ff73c95",
"name": "投稿をシートに保存",
"type": "n8n-nodes-base.googleSheets",
"position": [
1200,
300
],
"parameters": {
"range": "Generated!A1:C1",
"sheetId": "1PiygWwVov4WzA8qvUOaZ9N1G9JgtgmpYy0w8ty3CHd0",
"operation": "append",
"dataToSend": "autoMapInputData"
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "1",
"name": "Google Sheets account"
}
},
"typeVersion": 4
},
{
"id": "d5bc4074-7ab1-4a0e-85cb-5c61792b53a9",
"name": "完了としてマーク",
"type": "n8n-nodes-base.googleSheets",
"position": [
1400,
300
],
"parameters": {
"key": "={{$json.rowIndex}}",
"range": "Planning!E:E",
"options": {
"valueInputOption": "RAW"
},
"sheetId": "1PiygWwVov4WzA8qvUOaZ9N1G9JgtgmpYy0w8ty3CHd0",
"operation": "update",
"dataToSend": {
"values": [
{
"value": "Finished",
"column": "Status"
}
]
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "1",
"name": "Google Sheets account"
}
},
"typeVersion": 4
}
],
"settings": {},
"connections": {
"f8b0b56b-e580-4b67-9871-4a9c3bb92446": {
"main": [
[
{
"node": "a95b45a5-b84e-43a0-ae53-2c2854e317d4",
"type": "main",
"index": 0
}
]
]
},
"ff9ed5e3-49e0-41ed-a10b-10ac380c0b47": {
"main": [
[
{
"node": "0058cd43-e14f-4a4c-b15e-c04f569c8c70",
"type": "main",
"index": 0
}
]
]
},
"96de9e63-5680-4db5-9936-65e33ff73c95": {
"main": [
[
{
"node": "d5bc4074-7ab1-4a0e-85cb-5c61792b53a9",
"type": "main",
"index": 0
}
]
]
},
"0058cd43-e14f-4a4c-b15e-c04f569c8c70": {
"main": [
[
{
"node": "b3082328-2ab1-4857-b3fa-7db55f89160d",
"type": "main",
"index": 0
}
]
]
},
"b3082328-2ab1-4857-b3fa-7db55f89160d": {
"main": [
[
{
"node": "f8b0b56b-e580-4b67-9871-4a9c3bb92446",
"type": "main",
"index": 0
}
]
]
},
"a95b45a5-b84e-43a0-ae53-2c2854e317d4": {
"main": [
[
{
"node": "96de9e63-5680-4db5-9936-65e33ff73c95",
"type": "main",
"index": 0
}
]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級 - コンテンツ作成, マルチモーダルAI
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
AI驱动のメール分诊与自動回复系统,統合OpenAIエージェントとGmail
AI驱动のメール分诊与自動回复系统,統合OpenAIエージェントとGmail
If
Set
Gmail
+
If
Set
Gmail
68 ノードAbdullahi Ahmed
コンテンツ作成
Printifyの自動化 - タイトルと説明を更新 - AlexK1919
GPT-4o-miniによるPrintify向け自動SEO製品タイトル・説明生成
If
Set
Code
+
If
Set
Code
26 ノードAmit Mehta
コンテンツ作成
WooCommerce Nano BananaのAIによるバーチャル試着
WooCommerce向けにFal.ai Nano Bananaを使用して、ビジual AIフィッティング画像を自動生成
If
Set
Wait
+
If
Set
Wait
20 ノードDavide
コンテンツ作成
✅ ウイルスのReelsファクトリー
Veo、Shotstack、Postizを使用したASMRガラス fruit動画制作と公開の自動化
If
Jwt
Set
+
If
Jwt
Set
37 ノードAyoub Boutouil
コンテンツ作成
Googleマップデータの抽出
Perplexity AI とメールバリデーションを使って、Googleマップスから potential clients を自動生成
If
Set
Code
+
If
Set
Code
18 ノードAntxon Pous
コンテンツ作成
Meta Graph APIを使ってGoogleスプレッドシートからInstagramストーリーを自動投稿
Meta Graph API を使って Google スプレッドシートから Instagram ストーリーの自動投稿
If
Set
Sort
+
If
Set
Sort
19 ノードiMan
コンテンツ作成
ワークフロー情報
難易度
中級
ノード数7
カテゴリー2
ノードタイプ5
作成者
Juan de Dios Estrella Sáez
@juanestrellaHi 👋 I’m Juan de Dios. I turn manual work into automated systems using n8n & Make, so you can focus on what really matters. I share my workflows, tips, and templates so you can start automating too. Got a question? I’m just a comment away
外部リンク
n8n.ioで表示 →
このワークフローを共有