繁体   English   中英

适用于Alexa的Amazon Web Service

[英]Amazon Web Service for Alexa

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

此API称为Alexa Web信息服务。

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

然后,我在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/

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

有谁碰巧知道每个标签的确切含义?

  • 百万/价值

  • 百万/三角洲

  • 排名/价值

  • 排名/三角洲

  • 每用户/价值

  • 每用户/增量

谢谢

关于aws:百万

“ PageViews PerMillion”统计信息显示“今天互联网上所有用户进行的每100万次综合浏览量中,该网站进行了多少次综合浏览量?” 然后,将每日平均浏览量在指定时间段内平均。

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

和aws:PerUser

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

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

我已经根据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>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM