in reply to Re: wsdl api in perl
in thread wsdl api in perl
I want to create google search on my web site which is developed using perl/CGI.#!/usr/bin/perl -w use SOAP::Lite; my $query = "perl"; my $googleSearch = SOAP::Lite -> service("http://api.google.com/Google +Search.wsdl"); my $result = $googleSearch -> doGoogleSearch( "iwnUXUtHj3bteg5FWfBJDwui3SPeB+iy", # password to access googl +e $query, 0, # Fisrt result 10, # Number of results "false", # Filter '', # Restriction "false", # Secure Search '', # lr 'latin1', # ie 'latin1' # oe ); print $result->{resultElements}->[0]->{title}; print "\n"; print $result->{resultElements}->[0]->{URL}; print "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: wsdl api in perl
by roman (Monk) on Feb 12, 2008 at 08:47 UTC |