Perl Diver 2.33
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Net::HTTPS::Any

Name Net::HTTPS::Any
Version 0.12
Located at /usr/share/perl5
File /usr/share/perl5/Net/HTTPS/Any.pm
Is Core No
Search CPAN for this module Net::HTTPS::Any
Documentation Net::HTTPS::Any
Module Details Net::HTTPS::Any

NAME

Net::HTTPS::Any - Simple HTTPS client


SYNOPSIS

  use Net::HTTPS::Any qw(https_get https_post);

  ( $page, $response, %reply_headers )
      = https_get(
                   { 'host' => 'www.fortify.net',
                     'port' => 443,
                     'path' => '/sslcheck.html',
                     'args' => { 'field' => 'value' },
                     #'args' => [ 'field'=>'value' ], #order preserved
                   },
                 );
  ( $page, $response, %reply_headers )
      = https_post(
                    'host' => 'www.google.com',
                    'port' => 443,
                    'path' => '/accounts/ServiceLoginAuth',
                    'args' => { 'field' => 'value' },
                    #'args' => [ 'field'=>'value' ], #order preserved
                  );

  #...


DESCRIPTION

This is a wrapper around Net::SSLeay providing a simple interface for the use of Business::OnlinePayment.

It used to allow switching between Net::SSLeay and Crypt::SSLeay implementations, but that was obsoleted. If you need to do that, use LWP instead. You can set $Net::HTTPS::SSL_SOCKET_CLASS = ``Net::SSL'' for Crypt::SSLeay instead of the default Net::SSLeay (since 6.02).


FUNCTIONS

https_get HASHREF | FIELD => VALUE, ...

Accepts parameters as either a hashref or a list of fields and values.

Parameters are:

host
port
path
headers (hashref)
For example: { 'X-Header1' => 'value', ... }

args
CGI arguments, either as a hashref or a listref. In the latter case, ordering is preserved (see the Tie::IxHash manpage to do so when passing a hashref).

debug
Set true to enable debugging.

Returns a list consisting of the page content as a string, the HTTP response code and message (i.e. ``200 OK'' or ``404 Not Found''), and a list of key/value pairs representing the HTTP response headers.

https_post HASHREF | FIELD => VALUE, ...

Accepts parameters as either a hashref or a list of fields and values.

Parameters are:

hosthost
portport
pathpath
headers (hashref)headers (hashref)
For example: { 'X-Header1' => 'value', ... }

Content-Type
Defaults to ``application/x-www-form-urlencoded'' if not specified.

argsargs
CGI arguments, either as a hashref or a listref. In the latter case, ordering is preserved (see the Tie::IxHash manpage to do so when passing a hashref).

content
Raw content (overrides args). A simple scalar containing the raw content.

debugdebug
Set true to enable debugging in the underlying SSL module.

Returns a list consisting of the page content as a string, the HTTP response code and message (i.e. ``200 OK'' or ``404 Not Found''), and a list of key/value pairs representing the HTTP response headers.


AUTHOR

Ivan Kohler, <ivan-net-https-any at freeside.biz>


BUGS

Please report any bugs or feature requests to bug-net-https-any at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.


SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Net::HTTPS::Any

You can also look for information at:


COPYRIGHT & LICENSE

Copyright 2008-2016 Freeside Internet Services, Inc. (http://freeside.biz/) All rights reserved.

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

Perl Diver brought to you by ScriptSolutions.com © 1997- 2026