in reply to Re^2: Google Apps API
in thread Google Apps API

?? accessors :D
my $user = $google-> RetrieveUser('BondJ007'); print join " ", "Hello", $user->GivenName, $user->FamilyName;

Replies are listed 'Best First'.
Re^4: Google Apps API
by briannz556 (Beadle) on Oct 15, 2008 at 10:21 UTC
    Nope, tried that. Think it has something to do with the fact that $user is XML code from my reading. Further reading made me try:
    ... previous code ... use XML::Simple; use Data::Dumper; my $config = XMLin($user); print Dumper($config);
    but that didn't work.
      Well thats kind of impossible. What does this print
      print Dumper( $user );
        I get: Could not find APItesting.xml in H:\My Documents\Desktop\ at H:\My Documents\Desktop\APItesting.pl line 9 where APItesting.pl is the test perl file on my desktop and line 9 is my $config = XMLin($user); Beyond me. I've sent an email to the autor but heard nothing back so far. Won't bug you on this. Just have to see what develops. Thanks for your time so far.