NAME
Net::API::REST::Request - Apache2 Incoming Request Access and Manipulation
SYNOPSIS
use Net::API::REST::Request;
## $r is the Apache2::RequestRec object
my $req = Net::API::REST::Request->new( request => $r, debug => 1 );
## or, to test it outside of a modperl environment:
my $req = Net::API::REST::Request->new( request => $r, debug => 1, checkonly => 1 );
VERSION
v1.1.0
DESCRIPTION
The purpose of this module is to provide an easy access to various method to process and manipulate incoming request.
This module inherits all of its methods from Apache2::API::Request. Please check its documentation directly.
For its alter ego to manipulate outgoing http response, use the Net::API::REST::Response module.
AUTHOR
Jacques Deguest <jack@deguest.jp>
Apache2::API::Request, Apache2::API::Response, Apache2::API
COPYRIGHT & LICENSE
Copyright (c) 2018-2023 DEGUEST Pte. Ltd.
You can use, copy, modify and redistribute this package and associated files under the same terms as Perl itself.