1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
#!/usr/bin/env ruby
# This file is a sample based on GoogleSearchClient.rb, which can be
# generated by WSDL file and wsdl2ruby.rb.
#
# $ wsdl2ruby.rb --type client --force \
# --wsdl http://api.google.com/GoogleSearch.wsdl
#
# See wsdlDriver.rb to use WSDL file directly (slow).
require 'GoogleSearchDriver.rb'
endpoint_url = ARGV.shift
obj = GoogleSearchPort.new(endpoint_url)
# Uncomment the below line to see SOAP wiredumps.
# obj.wiredump_dev = STDERR
# SYNOPSIS
# doGoogleSearch(key, q, start, maxResults, filter, restrict, safeSearch, lr, ie, oe)
#
# ARGS
# key - {http://www.w3.org/2001/XMLSchema}string
# q - {http://www.w3.org/2001/XMLSchema}string
# start - {http://www.w3.org/2001/XMLSchema}int
# maxResults - {http://www.w3.org/2001/XMLSchema}int
# filter - {http://www.w3.org/2001/XMLSchema}boolean
# restrict - {http://www.w3.org/2001/XMLSchema}string
# safeSearch - {http://www.w3.org/2001/XMLSchema}boolean
# lr - {http://www.w3.org/2001/XMLSchema}string
# ie - {http://www.w3.org/2001/XMLSchema}string
# oe - {http://www.w3.org/2001/XMLSchema}string
#
# RETURNS
# return GoogleSearchResult - {urn:GoogleSearch}GoogleSearchResult
#
# RAISES
# N/A
#
key = q = start = maxResults = filter = restrict = safeSearch = lr = ie = oe = nil
key = File.open(File.expand_path("~/.google_key")) { |f| f.read }.chomp
q = "Ruby"
start = 0
maxResults = 10
filter = false
restrict = ""
safeSearch = false
lr = ""
ie = "utf-8"
oe = "utf-8"
result = obj.doGoogleSearch(key, q, start, maxResults, filter, restrict, safeSearch, lr, ie, oe)
result.resultElements.each do |ele|
puts "== #{ele.title}: #{ele.URL}"
puts ele.snippet
puts
end
|