6

AWS(亚马逊网络服务)提供了一个用于向 Alexa 提交 HTTP 请求的 API。

此 API 称为 Alexa Web 信息服务。

&Action=UrlInfo我使用和提交 HTTP 请求&ResponseGroup=UsageStats

然后我在 HTTP 响应中收到一个 XML。

这是 XML 中与我的问题相关的部分:

<aws:PageViews>
    <aws:PerMillion>
        <aws:Value>12,345</aws:Value>
        <aws:Delta>+0.67%</aws:Delta>
    </aws:PerMillion>
    <aws:Rank>
        <aws:Value>1</aws:Value>
        <aws:Delta>0</aws:Delta>
    </aws:Rank>
    <aws:PerUser>
        <aws:Value>12.34</aws:Value>
        <aws:Delta>-0.56%</aws:Delta>
    </aws:PerUser>
</aws:PageViews>

API 的文档位于http://docs.aws.amazon.com/AlexaWebInfoService/latest/

我在 HTTP 请求中使用的特定参数的描述可以在API Reference / Actions / UrlInfo下找到,但我无法找到有关上述任何标签的任何详细信息。

有没有人碰巧知道每个标签的确切含义?:

  • 百万/价值

  • PerMillion / Delta

  • 排名/价值

  • 排名/增量

  • 每用户/价值

  • 每用户/增量

谢谢

4

2 回答 2

2

关于 aws:PerMillion

PageViews PerMillion 统计数据显示“在当今 Internet 上所有用户的每百万次浏览量中,有多少次浏览量是在这个网站上产生的?” 然后在指定的时间段内平均每日浏览量。

https://forums.aws.amazon.com/message.jspa?messageID=578614

和 aws:PerUser

它是“互联网上的每百万网页浏览量”

https://forums.aws.amazon.com/message.jspa?messageID=265890

于 2015-07-27T20:55:51.223 回答
0

根据 Treton 的回答,我根据对返回值的理解对示例结果进行了注释:

 <aws:TopSites>
  <!-- Country in which the sites in this result have been grouped. -->
  <aws:Country>
    <aws:CountryName>Australia</aws:CountryName>
    <aws:CountryCode>AU</aws:CountryCode>
    <!-- Total number of sites Alexa is tracking in this country -->
    <aws:TotalSites>22052</aws:TotalSites>
    <!-- List of sites in result. -->
    <aws:Sites>
      <aws:Site>
        <aws:DataUrl>google.com</aws:DataUrl>
        <aws:Country>
          <!-- Rank within country (eg 10 = 10th most popular site in country). -->
          <aws:Rank>1</aws:Rank>
          <!-- -->
          <aws:Reach>
            <!--
            Out of every million users on the internet today, how many visited
            this site?
            @see https://forums.aws.amazon.com/message.jspa?messageID=578614
            -->
            <aws:PerMillion>801700</aws:PerMillion>
          </aws:Reach>
          <aws:PageViews>
            <!--
            Out of every million pageviews by all users on the internet
            today, how many were made to this site?
            -->
            <aws:PerMillion>267200</aws:PerMillion>
            <!--
            What is the average (mean) number of pageviews to this site, per
            user, per day?
            -->
            <aws:PerUser>14.94</aws:PerUser>
          </aws:PageViews>
        </aws:Country>
        <!-- Rank within whole world.  -->
        <aws:Global>
          <aws:Rank>1</aws:Rank>
        </aws:Global>
      </aws:Site>
    </aws:Sites>
  </aws:Country>
</aws:TopSites>
于 2019-07-30T05:17:35.300 回答