The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Games::EveOnline::EveCentral::HTTPRequest - Internal use class to create HTTP::Request objects.

VERSION

version 0.001

SYNOPSIS

  my $http_request = Games::EveOnline::EveCentral::HTTPRequest->new(
    method => 'GET', # or 'POST'
    path => $api_method,
    headers => $headers,
    content => $content # if using POST, []
  )->http_request;

DESCRIPTION

This module creates an HTTP::Request object to make the API call with.

METHODS

http_request

This method creates an HTTP::Request object.

AUTHOR

Pedro Figueiredo, <me at pedrofigueiredo.org>

BUGS

Please report any bugs or feature requests through the web interface at https://github.com/pfig/games-eveonline-evecentral/issues. 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 Games::EveOnline::EveCentral

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

Copyright 2013 Pedro Figueiredo.

This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License.

See http://dev.perl.org/licenses/ for more information.

AUTHOR

Pedro Figueiredo <me@pedrofigueiredo.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Pedro Figueiredo.

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