package Business::MaxMind::TelephoneVerification; use strict; use vars qw($VERSION); $VERSION = '1.0'; use LWP::UserAgent; use base 'Business::MaxMind::HTTPBase'; my @allowed_fields = qw/l phone verify_code language/; sub _init { my $self = shift; $self->{url} = 'app/telephone_http'; $self->{check_field} = 'refid'; $self->{timeout} ||= 30; # provide a default value of 10 seconds for timeout if not set by user %{$self->{allowed_fields}} = map {$_ => 1} @allowed_fields } 1; __END__ =head1 NAME Business::MaxMind::TelephoneVerification - Access MaxMind's Telephone Verification service =head1 ABSTRACT This module queries the Telephone Verification service and calls the customer =item new Class method that returns a Business::MaxMind::TelephoneVerification object. If isSecure is set to 1, it will use a secure connection. If debug is set to 1, will print debugging output to standard error. timeout parameter is used to set timeout in seconds, if absent default value for timeout is 10 seconds. =item input Sets input fields. The input fields are =begin html =end html Returns 1 on success, 0 on failure. =item query Sends out query to MaxMind server and waits for response. If the primary server fails to respond, it sends out a request to the secondary server. =item output Returns the output returned by the MaxMind server as a hash reference. The output fields are =begin html =end html =back =head1 SEE ALSO L =head1 AUTHOR Frank Mather, Efrank@maxmind.comE =head1 COPYRIGHT AND LICENSE Copyright 2005 by MaxMind LLC All rights reserved. This package is free software and is licensed under the GPL. For details, see the COPYING file. =cut