我正在使用Amazon Product Advertising Ruby API (amazon-ecs)库。我列出了一些" vips"我需要知道他们是否也是这本书的作家。所以我需要知道如何按作者名称进行ItemSearch
。
$response = $amazonEcs->returnType(1)
->responseGroup('Large')
->optionalParameters(array('ItemPage' => 1))
->category('Books')
->page(1)
->author($author_name);
我将如何做到这一点?