Business-Fixflo
view release on metacpan or search on metacpan
lib/Business/Fixflo/Client.pm view on Meta::CPAN
code => $res->code,
response => $res->status_line,
request => $Business::Fixflo::Client::request_data,
});
}
}
sub _build_request {
my ( $self,$method,$path ) = @_;
my $req = HTTP::Request->new(
# passing through the absolute URL means we don't build it
$method => $path =~ /^http/
? $path : join( '/',$self->base_url . $self->api_path,$path ),
);
carp(
$method => $path =~ /^http/
? $path : join( '/',$self->base_url . $self->api_path,$path ),
) if $ENV{FIXFLO_DEBUG};
( run in 0.477 second using v1.01-cache-2.11-cpan-de7293f3b23 )