Ali Hunter和Ppspy等间谍工具如何从Shopify商店获取数据

发布于 2025-02-11 01:58:12 字数 1574 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

装纯掩盖桑 2025-02-18 01:58:12

ppspy做以下内容。

  • 它读取您的Shopify站点地图以在商店中找到产品。
    .../stitemap_products_1.xml

  • 作为后备,它解析了网址:
    .../collections/all?sort_by =最畅销 - 和尝试
    在那里找到产品。

  • 接下来,它使用Shopify的JSON URL。再次试图找到
    所有产品。一个示例URL:
    .../products.json?page = 1& limit = 250-大多数商店所有者甚至都不知道存在。

  • 之后,它调用了每种产品的JSON URL。你可以得到这个
    只需打开产品页面并写作,在您的在线商店中的URL
    “ .json”在URL中。示例URL:
    .../products/your-productName.json。

在此JSON中,有一个“ Updated_at”字段。每次进行更改时,都会更新此字段。另外,发生订单时(股票更改)。

因此,可以(大约)跟踪销售。

PPSPY does the following.

  • It reads your Shopify sitemap to find the products in the store.
    .../sitemap_products_1.xml

  • As fallback, it parses the URL:
    .../collections/all?sort_by=best-selling - and tries
    to find the products there.

  • Next, it uses the JSON URL from Shopify. There again it tries to find
    all products. An example URL:
    .../products.json?page=1&limit=250 - most store owners don't even know this exists.

  • After that, it calls the JSON URL for each product. You can get this
    URL in your online store by simply opening a product page and writing
    ".json" after it in the URL. Example URL:
    .../products/your-productname.json.

In this JSON there is a field "updated_at". This field is updated every time a change is made. Also, when an order take place (the stock is changed).

And with this, it is possible to track the sales (approximately).

无所谓啦 2025-02-18 01:58:12

它们称为Web刮板或爬网。他们转到您的产品页面(浏览您的电子商务中的所有链接)并了解页面的内容。他们提取产品名称和产品价格。他们将每X小时或X天做一次,并收集信息,因此他们不需要任何网络钩。

从理论上讲,您可以使您的页面变得足够复杂,以至于不容易爬网,例如,您可以用JavaScript显示价格(爬行者通常不启用JavaScript)。但这将使您的网站访问降低,尤其是对于Google而言,这实际上是另一个爬网。

They are called web scraper or crawlers. They go to your product page (going through all the links in your ecommerce) and understand the content of the page. They extract the product name and the product price. They will do that every X hours or X days and collect the information, so they don't need any webhook.

In theory you could make your page complicated enough to not make it easy to crawl, for example you could show the price with Javascript (the crawlers typically have javascript not enabled). But that would make your website less accessible, especially to Google, which is in fact another crawler.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文