通过 Google Sheet IMPORTXML 从 Instagram 帖子中抓取点赞和评论数量

问题描述 投票:0回答:1

我是 importXML 的菜鸟。点赞数的 XPath 是

//*[@id="react-root"]/section/main/div/div/article/div[2]/section[2]/div/a/span

因此,从这篇文章中抓取点赞数的公式:https://www.instagram.com/p/BZLli5ll6yz/ 应该是:

=IMPORTXML("https://www.instagram.com/p/BZLli5ll6yz/", "//*[@id="react-root"]/section/main/div/div/article/div[2]/section[2]/div/a/span")

对吗?我错过了什么?

google-sheets web-scraping xpath
1个回答
0
投票

确保在 xpath 中“react-root”位于子类中:“react-root”。这使其包含在第二个参数中。

© www.soinside.com 2019 - 2024. All rights reserved.