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::Contact::Base(3) User Contributed Perl Documentation WWW::Contact::Base(3)

WWW::Contact::Base - Base module for WWW::Contact::*

    use WWW::Contact::MyMail;
    
    use Moose;
    extends 'WWW::Contact::Base';
    
    sub get_contacts {
        my ($self, $email, $password) = @_;
        
        # reset
        $self->errstr(undef);
        my @contacts;
        
        my $ua = $self->ua;
        $self->debug("start get_contacts from MyMail");
        
        # get contacts
        
        return wantarray ? @contacts : \@contacts;
    }

This module is mainly for you to write your own WWW::Contact::* (and used in my WWW::Contact::)

ua
an instance of WWW::Mechanize

    $self->ua->get('http://www.google.com');
    

If u want to use WWW::Mechanize::* instead of WWW::Mechanize, try

    extends 'WWW::Contact::Base';
    has '+ua_class' => ( default => 'WWW::Mechanize::GZip' );
    
verbose
turn on debug, default is off

    $self->verbose(1); # turn on
    $self->verbose(0); # turn off
    
debug
write debug info depends on $self->verbose

    $self->debug("start get_contacts from MyMail");
    
debug_to_file($file)
Dumper(\$self->ua) to $file

    $self->debug_to_file($file)
    
get
a wrapper of $self->ua->get, with $resp->is_success check

    $self->get('http://www.google.com');
    
submit_form
a wrapper of $self->ua->submit_form, with $resp->is_success check

    $self->submit_form(
        form_number => 1,
        fields      => {
            Email  => $email,
            Passwd => $password,
        }
    );
    

WWW::Contact, WWW::Mechanize, Moose

Fayland Lam, "<fayland at gmail.com>"

Copyright 2008 Fayland Lam, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

2018-02-28 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.