
WWW::Search::Ebay::ByBidderID - backend for searching eBay for items offered by a particular seller

use WWW::Search;
my $oSearch = new WWW::Search('Ebay::ByBidderID');
my $sQuery = WWW::Search::escape_query("fabz75");
$oSearch->native_query($sQuery);
while (my $oResult = $oSearch->next_result())
{ print $oResult->url, "\n"; }

See WWW::Search::Ebay for details. The query string must be an eBay bidder ID.
This class is an Ebay specialization of WWW::Search. It handles making and interpreting Ebay searches http://www.ebay.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.

Searches only for items being bid on by eBay buyers whose ID matches exactly.
The resulting WWW::Search::Result objects will have the following attributes filled in:
The approximate date the auction started.
The date/time the auction will end.
The current high bid.
The auction title.
The eBay ID of the current high bidder.
The eBay ID of the seller.

To make new back-ends, see WWW::Search.

Please tell the maintainer if you find any!

Code contributed by Andreas Grau. Thank you! Maintained by Martin Thurn mthurn@cpan.org, http://tinyurl.com/nn67z as part of the WWW-Search-Ebay distribution..