资 源 简 介
THIS PROJECT HAS MOVED TO GITHUB https://github.com/timotheus/ebaysdk-perl
This module supports eBay"s Shopping and Trading API services. In addition, eBay::API::Simple comes with a standard RSS and HTML back-end.
In order to use eBay aspects of this utility you must first register with eBay to get your API developer credentials (see the ebay.yaml option for a way to tie these credentials into the Shopping and Trading back-ends)
Parallel Requests
```
my $pua = eBay::API::Simple::Parallel->new();
my $call1 = eBay::API::Simple::RSS->new( {
parallel => $pua,
} );
$call1->execute(
’http://worldofgood.ebay.com/Clothes-Shoes-Men/43/list?format=rss’,
);
my $call2 = eBay::API::Simple::RSS->new( {
parallel => $pua,
} );
$call2->execute(
’http://worldofgood.ebay.com/Home-Garden/46/list?format=rss’
);
$pua->wait();
if ( $pua->has_error() ) {
print