GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
WWW::Shorten::UserAgent(3) User Contributed Perl Documentation WWW::Shorten::UserAgent(3)

WWW::Shorten::UserAgent - LWP::UserAgent subclass for WWW::Shorten modules.

  use strict;
  use warnings;
  use WWW::Shorten::UserAgent;
  use Try::Tiny qw(try catch);

  my $ua = WWW::Shorten::UserAgent->new;

  my $resp = try {
    $ua->get($url);
  }
  catch {
    warn "Uh oh: $_";
    return undef;
  };

Subclass of LWP::UserAgent which works the same way as the superclass except that it throws an exception if the "get" or "post" method returns an error.

See LWP::UserAgent for the full documentation.

Makes an HTTP GET request and throws an exception on error.

Makes an HTTP POST request and throws an exception on error.

Dave Cross <dave@mag-sol.com>

Copyright (c) Magnum Solutions Ltd., 2012. All rights reserved.

This module is free software. You can redistribute it and/or modify it under the terms of the Artistic License 2.0.

This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.

WWW::Shorten
2021-03-12 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.