如何使用Ruby Savon为类别产品链接正确调用Magento SOAP API?

时间:2013-01-31 19:45:56

标签: ruby magento soap savon

我正在尝试使用Savon调用catalog_product_link.list API方法。但是,我一直收到错误Error cannot find parameter

以下是我正在使用的内容,虽然我已经尝试了几种不同的调用方式但仍无法正确使用它:

client = Savon.client(wsdl: 'http://localhost/index.php/api/soap/?wsdl')
response = client.call(:login){message(username: 'user', apiKey: 'key')}
session = response.body[:login_response][:login_return]

#These all do not work
client.call(:call){message(:session => session, :method => 'catalog_product_link.list', :type => 'up_sell', :productId => '166')}
client.call(:call){message(:session => session, :method => 'catalog_product_link.list', :type => 'up_sell', :product => '166')}
client.call(:call){message(:sessionId => session, :resourcePath => 'catalog_product_link.list', :args => {:type => 'up_sell', :product => '166'})}
client.call(:call){message(:sessionId => session, :resourcePath => 'catalog_product_link.list', :args => {:type => 'up_sell', :productId => '166'})}
client.call(:call){message(:sessionId => session, :resourcePath => 'catalog_product_link.list', :arguments => {:type => 'up_sell', :product => '166'})}

是否有不同的格式化方法可以让它发挥作用?

更新:如果我尝试删除type参数,则会显示错误Given invalid link type,因此它似乎不喜欢多个参数。

response = client.call(:call){message(:session => session, :method => 'catalog_product_link.list', :product => '166')}

1 个答案:

答案 0 :(得分:0)

我能够使用Builder来实现这一点:

class ServiceRequest
  def initialize(session, type, product)
    @session = session
    @type = type
    @product = product
  end

  def to_s
    builder = Builder::XmlMarkup.new()
    builder.instruct!(:xml, encoding: "UTF-8")

    builder.tag!(
      "env:Envelope",
      "xmlns:env" => "http://schemas.xmlsoap.org/soap/envelope/",
      "xmlns:ns1" => "urn:Magento",
      "xmlns:ns2" => "http://xml.apache.org/xml-soap",
      "xmlns:xsd" => "http://www.w3.org/2001/XMLSchema", 
      "xmlns:xsi" => "http://www.w3.org/2001/XMLSchema-instance"
    ) do |envelope|
      envelope.tag!("env:Body") do |body|
        body.tag!("ns1:call") do |call|
          builder.sessionId(@session, "xsi:type" => "xsd:string")
          builder.resourcePath("catalog_product_link.list", "xsi:type" => "xsd:string")
          builder.args("xsi:type" => "ns2:Map") do |args|
            args.item do |item|
              item.key("type", "xsi:type" => "xsd:string")
              item.value(@type, "xsi:type" => "xsd:string")
            end
            args.item do |item|
              item.key("product", "xsi:type" => "xsd:string")
              item.value(@product, "xsi:type" => "xsd:string")
            end
          end
        end
      end
    end

    builder.target!
  end
end

client.call(:call, xml: ServiceRequest.new(session, 'up_sell', '166').to_s)

感谢direction的@rubiii。