savon呼叫WebService服務
阿新 • • 發佈:2019-01-30
require 'savon'
client = Savon.client(
wsdl:'http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx?WSDL'
)
puts client.methods
puts client.operations #檢視可操作方法
#[:get_mobile_code_info, :get_database_info]
#呼叫get_database_info方法,該方法可以獲得國內手機號碼歸屬地資料庫資訊。
輸入引數:無;
返回資料:一維字串陣列(省份 城市 記錄數量)
client.call(:get_database_info ).body
獲得國內手機號碼歸屬地省份、地區和手機卡型別資訊。
輸入引數:mobileCode = 字串(手機號碼,最少前7位數字),userID = 字串(商業使用者ID)免費使用者為空字串;
返回資料:字串(手機號碼:省份 城市 手機卡型別)
res = client.call(:get_mobile_code_info) do
message mobileCode:'xxxxx'
end
#OR
res = client.call(:get_mobile_code_info,:message=>{:mobileCode=>"xxxx"})
puts res.body