0
結果我現在用的寶石amazon_product在亞馬遜搜索書籍。 搜索是完全正確的,但它讓我只有前10本書的名單。 我想獲得所有的搜索結果並對它們進行分頁。我怎樣才能做到這一點?PAGINATE從亞馬遜產品搜索
我的代碼看起來像這樣,
req = AmazonProduct["us"]
req.configure do |c|
c.key = "KEY"
c.secret = "SECRET_KEY"
c.tag = "TAG"
end
resp = req.search("Books", :power => params[:book][:search_term], :sort => "reviewrank")
@books = resp.to_hash["Items"]["Item"]
最大itemPage上API版本2011-08-01(電流)設定爲10 http://docs.aws.amazon.com/AWSECommerceService/latest/DG/PagingThroughResults.html – AlessMascherpa