Skip to Content
eBay Hacks, 2nd Edition
book

eBay Hacks, 2nd Edition

by David A. Karp
June 2005
Beginner
463 pages
14h 19m
English
O'Reilly Media, Inc.
Content preview from eBay Hacks, 2nd Edition

Negative Feedback Bidder Alert

Have a script automatically notify you if an eBay member with negative feedback has bid on one of your auctions.

One of the best ways to keep away deadbeat bidders [Hack #68] is to monitor your auctions and look for potential troublemakers, namely those with negative feedback ratings.

This script scans through your currently running auctions and notifies you via email whenever a high bidder has a feedback rating of less than zero:

#!/usr/bin/perl
require 'ebay.pl';
  $today = &formatdate(time);
$tendays = &formatdate(time + 864000);
my $page_number = 1;
PAGE:
while (1) {
    my $rsp = call_api({ Verb => 'GetSellerList',
DetailLevel => 8,
 UserId     =>    $user_id,
EndTimeFrom => $today,
 EndTimeTo  =  > $tendays,
PageNumber  => $page_number
});
if ($rsp->{Errors}) {
print_error($rsp);
last PAGE;

}
foreach (@{$rsp->{SellerList}{Item}}) { 
  my %i          = %$_;
($id,  $bidder)  = @i{qw/Id HighBidder/};

if ($bidder->{User}{Feedback}{Score} < 0) {
 open(MAIL,"|/usr/sbin/sendmail -t"); print MAIL "To: $selleremail\n"; print MAIL 
"From: $selleremail\n"; print MAIL "Subject: Negative Feedback Bidder Alert\n\n"; 
 print MAIL "A bidder with negative feedback has placed a bid on one of your auctions:\n";
 print MAIL "$itemurl$id\n"; 
close(MAIL);

 }
}
last PAGE unless $rsp->{SellerList}{HasMoreItems};

$page_number++;
}

This script is similar to the one in “Automatically Keep Track of Items You’ve Sold” [Hack #112] , with the notable exception that listings are retrieved for auctions ending any ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

eBay Hacks

eBay Hacks

David A. Karp

Publisher Resources

ISBN: 059610068XErrata Page