
Net::StackExchange::Route - Builds appropriate request object

version 0.102740

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 } );

prepare_requestReturns 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.

Alan Haggai Alavi <alanhaggai@alanhaggai.org>

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.