There is a bug in this, which sometimes screws up the generated url (giving the above error).
To fix it I added a line in functions_rewrite_ebay_auctionads.php
I changed this ;
Code:
// encode URL
$encodedlink = urlencode($rightlink);
To this ;
Code:
// encode URL
$encodedlink = urlencode($rightlink);
$encodedlink = str_replace('%26amp%3B','&',$encodedlink); // Paul M Fix, 04/02/2009