Oops. That didn't exactly answer your question, because it doesn't use the
services API. I didn't see a search by isbn method in Net::Amazon though...
You may want to try it anyway; if it's not there it would certainly be a
glaring omission.

- Mark. 

> -----Original Message-----
> From: Thomas, Mark - BLS CTR 
> Sent: Monday, August 08, 2005 10:14 AM
> To: '[EMAIL PROTECTED]'; 
> perl-win32-users@listserv.activestate.com
> Subject: RE: amazon web services/api...
> 
> Try this? (untested, minimally edited paste from the module docs)
> 
>     use WWW::Scraper::ISBN::Amazon_Driver;
>     $driver = WWW::Scraper::ISBN::Amazon_Driver->new();
>     $driver->verbosity(1);
>     $driver->search($isbn);
>     if ($driver->found) {
>         my $book = $driver->book();
>         print $book('title');
>     } else {
>         print $driver->error;
>     }
> 
> - Mark.
> 

_______________________________________________
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to