require LWP::UserAgent; my $ua = LWP::UserAgent->new; $ua->proxy('http', 'http://wwwcache.aber.ac.uk:8080/'); my $api = new Flickr::API({'key' => ''}); #There is an api key here! my $response = $api->execute_method('flickr.test.echo', { 'foo' => 'bar', 'baz' => 'quux', }); $ua->get($response);