NAME
WWW::Search::Ebay::ByBidderID - backend for searching eBay for items offered by a particular seller
SYNOPSIS
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"; }
DESCRIPTION
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.
NOTES
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:
- start_date
-
The approximate date the auction started.
- end_date
-
The date/time the auction will end.
- bid_amount
-
The current high bid.
- title
-
The auction title.
- bidder
-
The eBay ID of the current high bidder.
- seller
-
The eBay ID of the seller.
SEE ALSO
To make new back-ends, see WWW::Search.
BUGS
Please tell the maintainer if you find any!
AUTHOR
Code contributed by Andreas Grau. Thank you! Maintained by Martin Thurn as part of the WWW-Search-Ebay distribution.