我正在尝试编写一个脚本,该脚本将从使用XMLRPC的Red Hat Satellite / Spacewalk获取系统ID。我正在尝试获取ID,这是使用系统名称使用XMLRPC客户端时的第一个值。
我正在引用Red Hat中的the documentation获取下面使用的方法:
#!/usr/bin/env ruby
require "xmlrpc/client"
@SATELLITE_URL = "satellite.rdu.salab.redhat.com"
@SATELLITE_API = "/rpc/api"
@SATELLITE_LOGIN = "********"
@SATELLITE_PASSWORD = "*******"
@client = XMLRPC::Client.new(@SATELLITE_URL, @SATELLITE_API)
@key = @client.call("auth.login", @SATELLITE_LOGIN, @SATELLITE_PASSWORD)
@getsystemid = @client.call("system.getId", @key, 'cfme038')
print "#{@getsystemid}"
@systemid = @getsystemid ['id']
getsystemid的输出如下所示:
[{"id"=>1000010466, "name"=>"cfme038", "last_checkin"=>#<XMLRPC::DateTime:0x007f9581042428 @year=2013, @month=12, @day=26, @hour=14, @min=31, @sec=28>}]
但是当我尝试刚刚获得id
时,我收到了这个错误:
no implicit conversion of String into Integer (TypeError)
感谢任何帮助
答案 0 :(得分:37)
写为
@systemid = @getsystemid[0]['id']
@getsystemid
不是Hash
,而是Array
Hash
。 @getsystemid[0]
会为您提供预期的哈希{"id"=>1000010466, "name"=>"cfme038", "last_checkin"=>#}
。现在,您可以使用Hash#[]
方法通过使用其键来访问哈希值。