1

savon gemを使用してMagento SOAP APIにアクセスするにはどうすればよいですか。すぐに始めるために使用できる例はありますか?

ありがとう

4

2 に答える 2

6

始めるためにこれを試してください:

require 'rubygems'
require 'savon'

client = Savon::Client.new do
  wsdl.document = "http://your.server.here/index.php/api/?wsdl"
end

response = client.request :login do
  soap.body = { :username => 'soapuser', :apiKey => 'myapikey' }
end

if response.success? == false
  puts "login failed"
  System.exit(0)
end

session =  response[:login_response][:login_return];

response = client.request :call do
  soap.body = {:session => session,:method => 'catalog_product.list' }
end

# fetching all products
if response.success?
  # listing found products
  response[:call_response][:call_return][:item].each do |product|
    puts "-------------------------------------------"
    product = product[:item]
    product.each do |pkey|
        puts "#{pkey[:key]} -> #{pkey[:value]}"
    end
  end
end

#logging out
response = client.request :endSession do
  soap.body = {:session => session}
end
puts response.to_hash
于 2012-11-12T17:54:59.213 に答える
1

C#MagentoのAPIの使用例

同じことがルビーを含む他の言語にも当てはまります。明らかに構文は異なり、Savon構文をすでに知っていると思います。

チェックアウトすることもできます:https ://github.com/timmatheson/Magento#readme

于 2011-04-25T15:37:04.397 に答える