NAME

WebService::Recruit::AkasuguUchiiwai - An Interface for AkasuguUchiiwai Web Service

SYNOPSIS

use WebService::Recruit::AkasuguUchiiwai;

my $service = WebService::Recruit::AkasuguUchiiwai->new();

        my $param = {
            'key' => $ENV{'WEBSERVICE_RECRUIT_KEY'},
            'target' => '1',
        };
        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

赤ãTMãåç¥ãã«æ²è¼ããã¦ããååããã¾ãã¾ãªæ¤ç´¢ è»¸ã§æ¢ããååæfå±APIã§ãTMã

METHODS
new
This is the constructor method for this class.

my $service = WebService::Recruit::AkasuguUchiiwai->new();

This accepts optional parameters.

        my $conf = {
            utf8_flag => 1,
            param => {
                # common parameters of this web service 
            },
        };
        my $service = WebService::Recruit::AkasuguUchiiwai->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::AkasuguUchiiwai::Item for details.

my $res = $service->item( %$param );

category
This makes a request for "category" API. See WebService::Recruit::AkasuguUchiiwai::Category for details.

my $res = $service->category( %$param );

target
This makes a request for "target" API. See WebService::Recruit::AkasuguUchiiwai::Target for details.

my $res = $service->target( %$param );

feature
This makes a request for "feature" API. See WebService::Recruit::AkasuguUchiiwai::Feature for details.

my $res = $service->feature( %$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/uchiiwai/

AUTHOR

RECRUIT Media Technology Labs <mtl@cpan.org>

COPYRIGHT

Copyright 2008 RECRUIT Media Technology Labs