Subject: | Login problem |
I just had a chance today to follow-up and install the module, ignoring the errors I reported the other week. The install seemed to go fine and I wrote a small snippet of code to test things - that's where the problem immediately shows up. I consistently get a "Nope. That's not a good login" error even though I seem to be doing everything right according to the example provided and what I saw at cpan.org. My test code is below, any help, taking into account the Yahoo deadline of Aug. 21st, is very highly appreciated. Please note that I was logged out of my Yahoo account when I ran the code below (and variations of it), but was able to login through my browser, without problems, right after receiving the error from the code below.
#!/usr/bin/perl -w
use WWW::Yahoo::Groups;
my $user = 'username'; # yes, I used my real username when I ran the code :-)
my $pass = 'password'; # ditto for the password
my $y = WWW::Yahoo::Groups->new();
$y->login ($user => $pass);
$y->list ('Wonderful_Resources');
my $email = $y->fetch_message(1116);
print "Here is the email:\n";
print "$email\n";