http://www.perlmonks.org?node_id=11118991


in reply to Re: LWP::UserAgent Alternatives for API data
in thread LWP::UserAgent Alternatives for API data

I think marto's reply to a similar question from me is relevant: Re: polishing up a json fetching script for weather data.

# the API docs says you must identify yourself, please make this somet +hing legit my $name = '(example.com, contact@example.com)'; my $ua = Mojo::UserAgent->new; $ua->transactor->name( $name ); # get JSON response my $json = $ua->get( $url )->res->json->{properties};

I wonder if we're looking at the same API...are you shy to post your source?