in reply to Can't locate object method "get" via package "LWP::UserAgent"

Maybe your version of LWP is too old. From its "Changes" file:

2001-05-05 Gisle Aas <gisle@ActiveState.com> Release 5.53_94 (...) - new convenience methods: get/head/post/put

What does perl -MLWP -le "print LWP->Version" say?

Replies are listed 'Best First'.
Re^2: Can't locate object method "get" via package "LWP::UserAgent"
by Anonymous Monk on Oct 17, 2007 at 06:35 UTC
    generally its VERSION :)

      Yes, generally... but in this case the author also supplied a "Version" routine — for those of us who don't like typing all-caps words :)

      (But you're right, for more elaborate usages such as $obj->VERSION($minRequiredVersion) you'd want UNIVERSAL's VERSION.)

Re^2: Can't locate object method "get" via package "LWP::UserAgent"
by Plankton (Vicar) on Oct 18, 2007 at 00:03 UTC
    Well looks like that is it ...
    $ perl -MLWP -le "print LWP->Version" 5.53
    ... thanks!