Group
Extension

Matches 2

REST-Google ( E/EJ/EJS/REST-Google-1.0.8.tar.gz, EJS, 2009; MetaCPAN )
REST-Google/lib/REST/Google.pod ( view source; MetaCPAN )
documentation for response structure details.

=back

=head1 DEPENDENCIES

C<REST::Google> uses L<JSON::Any> for decoding Google AJAX Search API response and L<LWP> for search request sending.

=head1
REST-Google ( E/EJ/EJS/REST-Google-1.0.8.tar.gz, EJS, 2009; MetaCPAN )
REST-Google/lib/REST/Google.pm ( view source; MetaCPAN )
se strict;
use warnings;

use version; our $VERSION = qv('1.0.8');

use Carp qw/carp croak/;

use JSON::Any;

use HTTP::Request;
use LWP::UserAgent;

use URI;

require Class::Data::Inheritable;
requir
line
		unless $response->is_success;

	my $content = $response->content;

	my $json = JSON::Any->new();
	my $self = $json->decode($content);

	return bless $self, $class;
}

sub responseData {
	my $se

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.