NAME
WebService::Recruit::Eyeco - An Interface for Eyeco Web Service
SYNOPSIS
use WebService::Recruit::Eyeco;
my $service = WebService::Recruit::Eyeco->new();
my $param = {
'key' => $ENV{'WEBSERVICE_RECRUIT_KEY'},
'large_category' => '101',
'order' => '1',
'price_max' => '5000',
};
my $res = $service->item( %$param );
my $root = $res->root;
printf("api_version: %s\n", $root->api_version);
printf("results_available: %s\n", $root->results_available);
printf("results_returned: %s\n", $root->results_returned);
printf("results_start: %s\n", $root->results_start);
printf("item: %s\n", $root->item);
print "...\n";
DESCRIPTION
eyeco[ã¢ã¤ã³]ã«æ²è¼ããã¦ããååããã¾ãã¾ãªæ¤ç´¢è» ¸ã§æ¢ããååæfå±APIã§ãTMã
METHODS
new
This is the constructor method for this class.
my $service = WebService::Recruit::Eyeco->new();
This accepts optional parameters.
my $conf = {
utf8_flag => 1,
param => {
# common parameters of this web service
},
};
my $service = WebService::Recruit::Eyeco->new( %$conf );
add_param
Add common parameter of tihs web service.
$service->add_param( param_key => param_value );
You can add multiple parameters by calling once.
$service->add_param( param_key1 => param_value1,
param_key2 => param_value2,
...);
get_param
Returns common parameter value of the specified key.
my $param_value = $service->get( 'param_key' );
item
This makes a request for "item" API. See
WebService::Recruit::Eyeco::Item for details.
my $res = $service->item( %$param );
large_category
This makes a request for "large_category" API. See
WebService::Recruit::Eyeco::LargeCategory for details.
my $res = $service->large_category( %$param );
small_category
This makes a request for "small_category" API. See
WebService::Recruit::Eyeco::SmallCategory for details.
my $res = $service->small_category( %$param );
utf8_flag / user_agent / lwp_useragent / http_lite This modules uses XML::TreePP module internally. Following methods are available to configure it.
$service->utf8_flag( 1 );
$service->user_agent( 'Foo-Bar/1.0 ' );
$service->lwp_useragent( LWP::UserAgent->new() );
$service->http_lite( HTTP::Lite->new() );
SEE ALSO
http://webservice.recruit.co.jp/eyeco/
AUTHOR
RECRUIT Media Technology Labs <mtl@cpan.org>
COPYRIGHT
Copyright 2008 RECRUIT Media Technology Labs