เอาของที่ตัวเองเคยนำเสนอมาดัดแปลง
http://www.thaiseoboard.com/index.php?topic=63830.0 
ก็คือ ItemLookup เหมือนเดิม แต่มี Tags เป็น Response Group ด้วย
<?php /* http://forums.thaisem.com/index.php?topic=8265 */
include("includes/request.php"); // http://mierendo.com/software/aws_signed_query/
$public_key = 'xxxxxxxxxxxxxxx'; // your public key
$private_key = 'xxxxxxxxxxxxxxxx'; // your private key
$tag = 'YOUR_TAG_HERE-20' ; // your affilliate tag
$parsed_xml = aws_signed_request("com", array("Operation"=>"ItemLookup","ItemId"=>"$_GET[asin]","ResponseGroup"=>"Large,Tags","AssociateTag"=>"$tag"), $public_key, $private_key);
header('Content-type: text/xml');
print $parsed_xml->saveXML();
?>
หรือถ้าอยากได้หน้า Tags ก็เปลี่ยนไปใช้ Operation TagLookup
<?php
include("includes/request.php"); // get it from http://mierendo.com/software/aws_signed_query/
$public_key = 'xxxxxxxxxxxxxxx'; // your public key
$private_key = 'xxxxxxxxxxxxxxxx'; // your private key
$tag = 'YOUR_TAG_HERE-20' ; // your affilliate tag
$parsed_xml = aws_signed_request("com",array(
'Operation'=>'TagLookup',
'ResponseGroup'=>'Small',
'Count'=>'20',
'TagName'=>"$tagname",
'AssociateTag'=>"$tag"
), $public_key, $private_key);
header('Content-type: text/xml');
print ( $parsed_xml->saveXML() );
?>
แต่กฏใหม่มันจะทำไม่ได้แล้วละซิ ทั้ง Operation "TagLookup" และ Response Group "Tags"
http://www.thaiseoboard.com/index.php?topic=144261.0
https://affiliate-program.amaz...vertising/api/detail/main.html 