JeffChilders
Programmer
is there a way to send a url request without recieving the response?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
# Create a user agent object
use LWP::UserAgent;
$ua = LWP::UserAgent->new;
$ua->agent("MyApp/0.1 ");
# Create a request
my $req = HTTP::Request->new(GET=> '[URL unfurl="true"]http://search.cpan.org/search?bla=bla');[/URL]
# Pass request to the user agent and get a response back
my $res = $ua->request($req);