NAME
Net::StackExchange::Route - Builds appropriate request object
VERSION
version 0.102740
SYNOPSIS
use Net::StackExchange;
my $se = Net::StackExchange->new( {
'network' => 'stackoverflow.com',
'version' => '1.0',
} );
my $answers_route = $se->route('answers');
my $answers_request = $answers_route->prepare_request( { 'id' => 1036353 } );
METHODS
prepare_request
Returns respective request object based on the route with which this object has been created. The request object for the particular route will be constructed using the hash reference that is passed to prepare_request
.
AUTHOR
Alan Haggai Alavi <alanhaggai@alanhaggai.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Alan Haggai Alavi.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.