Games-EveOnline-API

 view release on metacpan or  search on metacpan

README.md  view on Meta::CPAN

## api\_url

The URL that will be used to access the Eve Online API.
Defaults to [https://api.eveonline.com](https://api.eveonline.com).  Normally you
won't want to change this.

## ua

The underlying [LWP::UserAgent](https://metacpan.org/pod/LWP::UserAgent) object.  Default to a new one
with no special arguments.  Override this if you want to, for
example, enable keepalive or an HTTP proxy.

# ANONYMOUS METHODS

These methods may be called anonymously, without authentication.

## skill\_tree

    my $skill_groups = $eapi->skill_tree();

Returns a complex data structure containing the entire skill tree.

lib/Games/EveOnline/API.pm  view on Meta::CPAN

=head2 api_url

The URL that will be used to access the Eve Online API.
Defaults to L<https://api.eveonline.com>.  Normally you
won't want to change this.

=head2 ua

The underlying L<LWP::UserAgent> object.  Default to a new one
with no special arguments.  Override this if you want to, for
example, enable keepalive or an HTTP proxy.

=cut

has user_id      => (is=>'ro',   isa=>Int );
has api_key      => (is=>'ro',   isa=>Str );
has character_id => (is=>'ro',   isa=>Int );
has api_url      => (is=>'ro',   isa=>Str, default=>'https://api.eveonline.com');
has ua           => (is=>'lazy', isa=>class_type('LWP::UserAgent'));

sub _build_ua {



( run in 1.505 second using v1.01-cache-2.11-cpan-39bf76dae61 )