NAME
WebService::Recruit::Akasugu::LargeCategory - Akasugu.net Web Service "large_category" API
SYNOPSIS
my
$service
= WebService::Recruit::Akasugu->new();
my
$param
= {
'key'
=>
$ENV
{
'WEBSERVICE_RECRUIT_KEY'
},
};
my
$res
=
$service
->large_category(
%$param
);
my
$data
=
$res
->root;
"api_version: $data->api_version\n"
;
"results_available: $data->results_available\n"
;
"results_returned: $data->results_returned\n"
;
"results_start: $data->results_start\n"
;
"large_category: $data->large_category\n"
;
"...\n"
;
DESCRIPTION
This module is a interface for the large_category
API. It accepts following query parameters to make an request.
my
$param
= {
'key'
=>
'XXXXXXXX'
,
};
my
$res
=
$service
->large_category(
%$param
);
$service
above is an instance of WebService::Recruit::Akasugu.
METHODS
root
This returns the root element of the response.
my
$root
=
$res
->root;
You can retrieve each element by the following accessors.
$root
->api_version
$root
->results_available
$root
->results_returned
$root
->results_start
$root
->large_category
$root
->large_category->[0]->code
$root
->large_category->[0]->name
xml
This returns the raw response context itself.
$res
->xml,
"\n"
;
code
This returns the response status code.
my
$code
=
$res
->code;
# usually "200" when succeeded
is_error
This returns true value when the response has an error.
die
'error!'
if
$res
->is_error;
SEE ALSO
AUTHOR
RECRUIT Media Technology Labs <mtl@cpan.org>
COPYRIGHT
Copyright 2008 RECRUIT Media Technology Labs