Help for this page

Select Code to Download


  1. or download this
    <feed xmlns='http://www.w3.org/2005/Atom'
        xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/'
        xmlns:gContact='http://schemas.google.com/contact/2008'
    ...
          href='http://www.google.com/m8/feeds/groups/liz%40gmail.com/base
    +/270f' />
      </entry>
    </feed>
    
  2. or download this
    my $xml_parser = XML::Smart->new($res->content);
    
    ...
    foreach my $entry (@{$xml_parser->{feed}->{entry}}) {
        printf('%s - %s%s',$entry->{'title'},$entry->{'gd:etag'},"\n");
    }