Help for this page

Select Code to Download


  1. or download this
    {
      "feeds": [
    ...
        }
      ]
    }
    
  2. or download this
    my $json = $ua->get( $url )->res->json; 
    for my $feed ( @{$json->{feeds}} ){
    ...
        print "$feed->{meta}{links}{feed}\n";
      }
    }