I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2008-01-17 20:16:31-08 by bugmenot
WWW-Myspace missing routines
I installed this module via ppm. After I tried a very basic sample, i got an error. Here's the test script:
my $myspace = WWW::Myspace->new ($account, $password); unless ( $myspace->logged_in ) { die "Login failed: " . $myspace->error } my ( @friends ) = $myspace->get_friends();

Can't locate object method "decoded_content" via package "HTTP::Headers" at (eva l 47) line 1.
So i figured i didn't have this sub. I found HTTP\Message.pm and duplicated:
<BR>sub content { shift->_elem('_content', @_); }
to
sub decoded_content { shift->_elem('_content', @_); }

just to see if it would work. So i got past that part but now i get a new error: Can't locate object method "readonly" via package "HTML::Form::TextInput" at C:/ Perl/site/lib/WWW/Myspace.pm line 5668.
Now i'm missing that. Obviously i don't want to go through and "fix" all of these places. What can i do to get this module working. I thought it installs all dependant modules.
Thanks in advance.
Direct Responses: Write a response