perldoc > WWW::Search::Ebay

📛 NAME

📦 WWW::Search::Ebay — backend for searching www.ebay.com

🚀 Quick Reference

Use CaseCommandDescription
🔍 Basic eBay searchmy $oSearch = new WWW::Search('Ebay'); $oSearch->native_query($sQuery);Create a search object and execute a query against current eBay auctions
💰 Price‑limited search$oSearch->native_query($sQuery, { _mPrRngCbx => '1', _udlo => $min, _udhi => $max });Restrict results to a price range (min/max)
📄 Format result as HTML$oSearch->result_as_HTML($oResult, $dateFormat);Get a human‑readable HTML representation of one auction result

📋 SYNOPSIS

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

📖 DESCRIPTION

This class is a 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

  $oSearch->{categories} = [
          {
            'ID' => '1',
            'Count' => 19,
            'Name' => 'Collectibles',
            'Subcategory' => [
                               {
                                 'ID' => '13877',
                                 'Count' => 11,
                                 'Name' => 'Historical Memorabilia'
                               },
                               {
                                 'ID' => '11450',
                                 'Count' => 1,
                                 'Name' => 'Clothing, Shoes & Accessories'
                               },
                             ]
          },
          {
            'ID' => '281',
            'Count' => 1,
            'Name' => 'Jewelry & Watches',
          }
        ];

⚙️ OPTIONS

💰 Limit search by price range (Contributed by Brian Wilson):

  $oSearch->native_query($sQuery, {
    _mPrRngCbx => '1', _udlo => $minPrice, _udhi => $maxPrice,
    } );

🔧 PUBLIC METHODS OF NOTE

🧩 METHODS TO BE OVERRIDDEN IN SUBCLASSING

You only need to read about these if you are subclassing this module (i.e. making a backend for another flavor of eBay search).

🔗 SEE ALSO

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

🐛 BUGS

Please tell the author if you find any!

👤 AUTHOR

Martin 'Kingpin' Thurn, "mthurn at cpan.org", <http://tinyurl.com/nn67z>.

Some fixes along the way contributed by Troy Davis.

⚖️ LEGALESE

THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

🪪 LICENSE

Copyright (C) 1998-2009 Martin 'Kingpin' Thurn

This software is released under the same license as Perl itself.

WWW::Search::Ebay
📛 NAME 🚀 Quick Reference 📋 SYNOPSIS 📖 DESCRIPTION 📝 NOTES ⚙️ OPTIONS 🔧 PUBLIC METHODS OF NOTE 🧩 METHODS TO BE OVERRIDDEN IN SUBCLASSING 🔗 SEE ALSO 🐛 BUGS 👤 AUTHOR ⚖️ LEGALESE 🪪 LICENSE

Generated by phpman v4.9.26-5-g7740029 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-08-12 04:59 @2600:1f28:365:80b0:194e:56dd:d3a6:4135
CrawledBy CCBot/2.0 (https://commoncrawl.org/faq/)
Valid XHTML 1.0 Transitional!Valid CSS!

^_top_^