8
n8n 中文网amn8n.com

将Trustpilot评论抓取到Google Sheets

中级

这是一个Product, Marketing领域的自动化工作流,包含 13 个节点。主要使用 Set, Code, SplitOut, HttpRequest, GoogleSheets 等节点。 抓取Trustpilot评论到Google Sheets + 兼容HelpfulCrowd的CSV格式

前置要求
  • 可能需要目标 API 的认证凭证
  • Google Sheets API 凭证
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
  "id": "DqvkhR9nzoPQKxGh",
  "meta": {
    "instanceId": "e634e668fe1fc93a75c4f2a7fc0dad807ca318b79654157eadb9578496acbc76"
  },
  "name": "将Trustpilot评论抓取到Google Sheets",
  "tags": [],
  "nodes": [
    {
      "id": "6680358c-de48-4459-aac7-dd7b903e542d",
      "name": "当点击\"测试工作流\"时",
      "type": "n8n-nodes-base.manualTrigger",
      "position": [
        -1300,
        340
      ],
      "parameters": {},
      "typeVersion": 1
    },
    {
      "id": "896d5dcb-d2cf-4a86-8c84-7997bc7a2d0a",
      "name": "便签",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1000,
        40
      ],
      "parameters": {
        "width": 232,
        "height": 346,
        "content": "## 编辑此节点 👇"
      },
      "typeVersion": 1
    },
    {
      "id": "4d208d18-991b-4dfd-a717-8f752ea74a90",
      "name": "获取评论",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        -700,
        220
      ],
      "parameters": {
        "url": "=https://trustpilot.com/review/{{ $json.company_id }}",
        "options": {
          "pagination": {
            "pagination": {
              "parameters": {
                "parameters": [
                  {
                    "name": "page",
                    "value": "={{ $pageCount + 1 }}"
                  }
                ]
              },
              "maxRequests": "={{ $json.max_page }}",
              "requestInterval": 5000,
              "limitPagesFetched": true,
              "paginationCompleteWhen": "receiveSpecificStatusCodes",
              "statusCodesWhenComplete": "404"
            }
          }
        },
        "sendQuery": true,
        "queryParameters": {
          "parameters": [
            {
              "name": "sort",
              "value": "recency"
            }
          ]
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "b3e4c576-a9f4-48c8-ad27-696c0e0fc69d",
      "name": "全局",
      "type": "n8n-nodes-base.set",
      "position": [
        -960,
        220
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "556e201d-242a-4c0e-bc13-787c2b60f800",
              "name": "company_id",
              "type": "string",
              "value": "n8n.io"
            },
            {
              "id": "a1f239df-df08-41d8-8b78-d6502266a581",
              "name": "max_page",
              "type": "number",
              "value": 100
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "f2dd1771-cba9-408f-93bd-2e83201edae9",
      "name": "解析评论",
      "type": "n8n-nodes-base.code",
      "position": [
        -480,
        220
      ],
      "parameters": {
        "jsCode": "const cheerio = require('cheerio');\n\nasync function getReviewsFromPage(content) {\n    try {\n        const $ = cheerio.load(content);\n        const scriptTag = $('#__NEXT_DATA__');\n        \n        if (!scriptTag.length) {\n            console.warn(\"Warning: Could not find review data in page\");\n            return [];\n        }\n\n        const reviewsRaw = JSON.parse(scriptTag.html());\n        return reviewsRaw.props.pageProps.reviews || [];\n    } catch (error) {\n        console.error(`Error fetching reviews: ${error.message}`);\n        return [];\n    }\n}\n\nasync function scrapeTrustpilotReviews() {\n    let reviewsData = [];\n    \n    for (let page = 0; page < $input.all().length; page++) {\n        console.log(`\\nScraping page ${page}...`);\n        const content = $input.all()[page].json.data;\n        const reviews = await getReviewsFromPage(content);\n        \n        if (!reviews.length) {\n            console.log(\"No more reviews found.\");\n            break;\n        }\n\n        console.log(`Found ${reviews.length} reviews on page ${page}`);\n        reviews.forEach(review => {\n            const data = {\n                Date: new Date(review.dates.publishedDate).toISOString().split('T')[0],\n                Author: review.consumer.displayName,\n                Body: review.text,\n                Heading: review.title,\n                Rating: review.rating,\n                Location: review.consumer.countryCode\n            };\n            reviewsData.push(review);\n        });\n    }\n    \n    return reviewsData;\n}\n\nconst reviews = await scrapeTrustpilotReviews();\n\n\nreturn {reviews:reviews};"
      },
      "typeVersion": 2
    },
    {
      "id": "b5204815-4feb-4311-a153-205933a325b2",
      "name": "HelpfulCrowd编辑",
      "type": "n8n-nodes-base.set",
      "position": [
        -40,
        460
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "e57e50a2-cf1c-4e9c-bcab-38c97ffc79d4",
              "name": "product_id",
              "type": "string",
              "value": ""
            },
            {
              "id": "acce9f30-1bae-4e75-9f96-a8590642e47c",
              "name": "rating",
              "type": "string",
              "value": "={{ $json.rating }}"
            },
            {
              "id": "6662028a-6c37-4a79-9d60-ea38d514b7b9",
              "name": "title",
              "type": "string",
              "value": "={{ $json.title }}"
            },
            {
              "id": "3bfe0ca5-d154-420f-8fbc-bd091472edb5",
              "name": "feedback",
              "type": "string",
              "value": "={{ $json.text }}"
            },
            {
              "id": "aa3e14f3-5f83-41fb-a2e2-fa8e2cfd74e6",
              "name": "customer_name",
              "type": "string",
              "value": "={{ $json.consumer.displayName }}"
            },
            {
              "id": "9048a66b-8c70-424f-a849-56f989be0b52",
              "name": "customer_email",
              "type": "string",
              "value": ""
            },
            {
              "id": "08cfc9c4-48fd-4ac7-ae4c-78bceaa3e745",
              "name": "comment",
              "type": "string",
              "value": ""
            },
            {
              "id": "90ec5664-4fcc-43d1-be72-144c3ea48475",
              "name": "status",
              "type": "string",
              "value": "={{ $json.pending ? 'pending' : 'published' }}"
            },
            {
              "id": "7076f725-b6c2-4c24-b517-c84f78ae69dc",
              "name": "review_date",
              "type": "string",
              "value": "={{ $json.dates.publishedDate.split('T')[0] }}"
            },
            {
              "id": "92c79888-dfb4-4be8-9f0d-c140a151ef0e",
              "name": "verified",
              "type": "string",
              "value": "={{ $json.labels.verification.isVerified ? 'yes' : 'no' }}"
            },
            {
              "id": "93e7b8b9-aea6-4ca4-bc7b-1e5469ddb39e",
              "name": "media_1",
              "type": "string",
              "value": ""
            },
            {
              "id": "5a2688d3-c9dd-4f5e-a975-f4357c752c95",
              "name": "media_2",
              "type": "string",
              "value": ""
            },
            {
              "id": "c6bbf887-bc47-4f9e-a3b0-bb6ba403b5b3",
              "name": "media_3",
              "type": "string",
              "value": ""
            },
            {
              "id": "218d7c77-44f1-4c22-a82c-8d7b49dcaf4a",
              "name": "media_4",
              "type": "string",
              "value": ""
            },
            {
              "id": "893356ab-fe8a-4500-be7b-d000fe78ebb7",
              "name": "media_5",
              "type": "string",
              "value": ""
            },
            {
              "id": "50355cf7-2d4d-49da-b62d-695916d9db77",
              "name": "review_id",
              "type": "string",
              "value": "={{ $json.id }}"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "746bca7f-7d79-403b-b281-37c74db04b50",
      "name": "分离输出",
      "type": "n8n-nodes-base.splitOut",
      "position": [
        -260,
        220
      ],
      "parameters": {
        "options": {},
        "fieldToSplitOut": "reviews"
      },
      "typeVersion": 1
    },
    {
      "id": "fc5aa26e-8b12-435b-8229-549c3034dc5b",
      "name": "常规编辑",
      "type": "n8n-nodes-base.set",
      "position": [
        -40,
        -60
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "e57e50a2-cf1c-4e9c-bcab-38c97ffc79d4",
              "name": "Date",
              "type": "string",
              "value": "={{ $json.dates.publishedDate }}"
            },
            {
              "id": "fcbae9ed-47c4-4084-87b4-c8dac07396ba",
              "name": "Author",
              "type": "string",
              "value": "={{ $('Parse reviews').item.json.reviews[0].consumer.displayName }}"
            },
            {
              "id": "829a0a42-c7fb-4de2-9fa3-dd0c6dbf5624",
              "name": "Body",
              "type": "string",
              "value": "={{ $json.text }}"
            },
            {
              "id": "26c1bca9-b08c-43f7-90f9-eaa8b9666515",
              "name": "Heading",
              "type": "string",
              "value": "={{ $json.title }}"
            },
            {
              "id": "8855995e-f45d-4ae7-bd22-f9b406a16913",
              "name": "Rating",
              "type": "string",
              "value": "={{ $json.rating }}"
            },
            {
              "id": "bcf78f11-1c72-4305-9a02-fe2c937249f9",
              "name": "Location",
              "type": "string",
              "value": "={{ $json.consumer.countryCode }}"
            },
            {
              "id": "50355cf7-2d4d-49da-b62d-695916d9db77",
              "name": "review_id",
              "type": "string",
              "value": "={{ $json.id }}"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "13f3720d-0753-49fc-a5e6-1473d5411e29",
      "name": "常规表格",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        360,
        -60
      ],
      "parameters": {
        "columns": {
          "value": {
            "Body": "={{ $json.Body }}",
            "Date": "={{ $json.Date }}",
            "Author": "={{ $json.Author }}",
            "Rating": "={{ $json.Rating }}",
            "Heading": "={{ $json.Heading }}",
            "Location": "={{ $json.Location }}",
            "review_id": "={{ $json.review_id }}"
          },
          "schema": [
            {
              "id": "Date",
              "type": "string",
              "display": true,
              "removed": false,
              "required": false,
              "displayName": "Date",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Author",
              "type": "string",
              "display": true,
              "removed": false,
              "required": false,
              "displayName": "Author",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Body",
              "type": "string",
              "display": true,
              "removed": false,
              "required": false,
              "displayName": "Body",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Heading",
              "type": "string",
              "display": true,
              "removed": false,
              "required": false,
              "displayName": "Heading",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Rating",
              "type": "string",
              "display": true,
              "removed": false,
              "required": false,
              "displayName": "Rating",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "Location",
              "type": "string",
              "display": true,
              "removed": false,
              "required": false,
              "displayName": "Location",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "review_id",
              "type": "string",
              "display": true,
              "removed": false,
              "required": false,
              "displayName": "review_id",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            }
          ],
          "mappingMode": "defineBelow",
          "matchingColumns": [
            "review_id"
          ],
          "attemptToConvertTypes": false,
          "convertFieldsToString": false
        },
        "options": {},
        "operation": "appendOrUpdate",
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": 323953858,
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1yf_RYZGFHpMyOvD3RKGSvIFY2vumvI4474Qm_1t4-jM/edit#gid=323953858",
          "cachedResultName": "trustpilot"
        },
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": "1yf_RYZGFHpMyOvD3RKGSvIFY2vumvI4474Qm_1t4-jM",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1yf_RYZGFHpMyOvD3RKGSvIFY2vumvI4474Qm_1t4-jM/edit?usp=drivesdk",
          "cachedResultName": "Squarespace automation"
        }
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "id": "JgI9maibw5DnBXRP",
          "name": "Google Sheets account"
        }
      },
      "typeVersion": 4.5
    },
    {
      "id": "0ffeed7c-7787-461f-a47b-704fa665dcc6",
      "name": "HelpfulCrowd表格",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        380,
        460
      ],
      "parameters": {
        "columns": {
          "value": {
            "title": "={{ $('HelpfulCrowd edits').item.json.title }}",
            "comment": "={{ $('HelpfulCrowd edits').item.json.comment }}",
            "rating*": "={{ $('HelpfulCrowd edits').item.json.rating }}",
            "status*": "={{ $('HelpfulCrowd edits').item.json.status }}",
            "verified": "={{ $('HelpfulCrowd edits').item.json.verified }}",
            "feedback*": "={{ $('HelpfulCrowd edits').item.json.feedback }}",
            "review_id": "={{ $('HelpfulCrowd edits').item.json.review_id }}",
            "product_id*": "={{ $('HelpfulCrowd edits').item.json.product_id }}",
            "review_date*": "={{ $('HelpfulCrowd edits').item.json.review_date }}",
            "customer_email": "={{ $('HelpfulCrowd edits').item.json.customer_email }}",
            "customer_name*": "={{ $('HelpfulCrowd edits').item.json.customer_name }}"
          },
          "schema": [
            {
              "id": "product_id*",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "product_id*",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "rating*",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "rating*",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "title",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "title",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "feedback*",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "feedback*",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "customer_name*",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "customer_name*",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "customer_email",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "customer_email",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "comment",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "comment",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "status*",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "status*",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "review_date*",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "review_date*",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "verified",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "verified",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "media_1",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "media_1",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "media_2",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "media_2",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "media_3",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "media_3",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "media_4",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "media_4",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "media_5",
              "type": "string",
              "display": true,
              "required": false,
              "displayName": "media_5",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            },
            {
              "id": "review_id",
              "type": "string",
              "display": true,
              "removed": false,
              "required": false,
              "displayName": "review_id",
              "defaultMatch": false,
              "canBeUsedToMatch": true
            }
          ],
          "mappingMode": "defineBelow",
          "matchingColumns": [
            "review_id"
          ],
          "attemptToConvertTypes": false,
          "convertFieldsToString": false
        },
        "options": {},
        "operation": "appendOrUpdate",
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": 1811842087,
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1yf_RYZGFHpMyOvD3RKGSvIFY2vumvI4474Qm_1t4-jM/edit#gid=1811842087",
          "cachedResultName": "helpfulcrowd"
        },
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": "1yf_RYZGFHpMyOvD3RKGSvIFY2vumvI4474Qm_1t4-jM",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1yf_RYZGFHpMyOvD3RKGSvIFY2vumvI4474Qm_1t4-jM/edit?usp=drivesdk",
          "cachedResultName": "Squarespace automation"
        }
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "id": "JgI9maibw5DnBXRP",
          "name": "Google Sheets account"
        }
      },
      "typeVersion": 4.5
    },
    {
      "id": "23f1b89f-ef06-4908-b00a-fa7b1f47b945",
      "name": "便签1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        340,
        80
      ],
      "parameters": {
        "width": 252,
        "height": 166,
        "content": "## 克隆此电子表格"
      },
      "typeVersion": 1
    },
    {
      "id": "2864095b-d6d5-4e58-bd33-0c0b0441df1e",
      "name": "便签2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        340,
        360
      ],
      "parameters": {
        "width": 252,
        "height": 326,
        "content": "### HelpfulCrowd列"
      },
      "typeVersion": 1
    },
    {
      "id": "d1f55902-441c-4658-ade9-033e89d9681b",
      "name": "计划触发器",
      "type": "n8n-nodes-base.scheduleTrigger",
      "position": [
        -1300,
        120
      ],
      "parameters": {
        "rule": {
          "interval": [
            {}
          ]
        }
      },
      "typeVersion": 1.2
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "a4b9bac7-f986-4744-9eeb-1e8faa1bab67",
  "connections": {
    "Global": {
      "main": [
        [
          {
            "node": "Get reviews",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Split Out": {
      "main": [
        [
          {
            "node": "HelpfulCrowd edits",
            "type": "main",
            "index": 0
          },
          {
            "node": "General edits",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Get reviews": {
      "main": [
        [
          {
            "node": "Parse reviews",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "General edits": {
      "main": [
        [
          {
            "node": "General sheet",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Parse reviews": {
      "main": [
        [
          {
            "node": "Split Out",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Schedule Trigger": {
      "main": [
        [
          {
            "node": "Global",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "HelpfulCrowd edits": {
      "main": [
        [
          {
            "node": "HelpfulCrowd Sheets",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "When clicking ‘Test workflow’": {
      "main": [
        [
          {
            "node": "Global",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
常见问题

如何使用这个工作流?

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

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

中级 - 产品, 营销

需要付费吗?

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

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

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

作者
bangank36

bangank36

@bangank36

Automation specialist with 10+ years of experience helping SME website owners streamline their workflows—specializing in Squarespace, Shopify, and WordPress. Book an initial consultation for custom n8n automation using my link.

外部链接
在 n8n.io 查看

分享此工作流