如何使用YQL获得超过10个查询结果


How to get more that 10 results for a query using YQL?

我正在尝试在php中使用YQL,使用Amazon.prodlist表和亚马逊产品广告API从亚马逊获取产品信息。

我使用的查询:

select * from amazon.prodlist where Title='harry potter' and SearchIndex='Books' and ResponseGroup='Images,ItemAttributes'

它只返回10个结果。如何在同一页面上显示超过10个结果?此外,没有分页。

完整的PHP代码:

<?php
$BASE_URL = "https://query.yahooapis.com/v1/public/yql";
$key="my_key";
$secret="my_secret";
$title="harry potter";
$sindex="Books";
$rgroup="Images,ItemAttributes";
$events="";
     
// Form YQL query and build URI to YQL Web service
$yql_query = "use 'http://www.datatables.org/amazon/amazon.ecs.xml' as amazon.prodlist;
set AWSAccessKeyId='$key' on amazon.prodlist;
set secret='$secret' on amazon.prodlist; 
select * from amazon.prodlist where Title='$title' and SearchIndex='$sindex' and ResponseGroup='$rgroup' ";
$yql_query_url = $BASE_URL . "?q=" . urlencode($yql_query) . "&format=json";
// Make call with cURL
$session = curl_init($yql_query_url);
curl_setopt($session, CURLOPT_RETURNTRANSFER,true);
$json = curl_exec($session);
// Convert JSON to PHP object 
$phpObj =  json_decode($json);
// Confirm that results were returned before parsing
if(!is_null($phpObj->query->results)){
  // Parse results and extract data to display
  foreach($phpObj->query->results->Item as $event){
    $events .= "<div><h2>" . $event->ItemAttributes->Title . " by " . $event->ItemAttributes->Author . "</h2></div>";
}
}
// No results were returned
if(empty($events)){
  $events = "Sorry, no events matching result";
}
// Display results and unset the global array $_GET
echo $events;
unset($_GET);
?>

这将在一页上显示10个结果。然而,当我在亚马逊网站的"图书"中搜索"哈利波特"时,我得到了3000多个结果。有没有办法把所有结果都放在一个页面上?请告知。

amazon.ecs开放数据表(在撰写问题时)不支持结果分页,因此只能检索10个项目。这是开放数据表作者的常见疏忽。

我已经修改了我自己的YQL表存储库分支中的数据表源,并发出了一个pull请求(此处),希望能将更改返回到主源中。然后,您将能够使用table.name([offset,]count)语法(docs)来获得更多(或更少!)结果。

如果你想立即启动并运行,那么你需要更改数据表的URL,以指向我在一个特殊分支中的更改,只针对这个问题:

https://github.com/salathe/yql-tables/blob/so-6269923/amazon/amazon.ecs.xml

您的完整查询如下所示(与现有查询非常相似):

use 'https://raw.github.com/salathe/yql-tables/so-6269923/amazon/amazon.ecs.xml' as amazon.prodlist;
use AWSAccessKeyId='my_access_key' on amazon.prodlist;
use secret='my_secret' on amazon.prodlist; 
select *
from amazon.prodlist(50) 
where Title='harry potter' 
  and SearchIndex='Books' 
  and ResponseGroup='Images,ItemAttributes';

当(如果…注意pull请求)更改被拉回到主YQL表存储库中时,您将能够返回使用http://www.datatables.org/amazon/amazon.ecs.xmlURL。