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

Yep, saw that. But as I read it, this is for creating a new user and their Givenname and Familyname. I want to READ the values for an existing user. Does that make sense?

Replies are listed 'Best First'.
Re^3: Google Apps API
by Anonymous Monk on Oct 15, 2008 at 09:21 UTC
    ?? accessors :D
    my $user = $google-> RetrieveUser('BondJ007'); print join " ", "Hello", $user->GivenName, $user->FamilyName;
      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 );