使用Node JS消耗Magento SOAP API

时间:2016-04-19 19:52:27

标签: node.js web-services magento soap

我使用SOAP npm尝试获取所有客户,但现在我在用户列表控制台日志中获得 undefined

var soap = require(' soap');

soap.createClient(url,function(err,client){

    client.login(args, function (err, session, client) {
        console.log(session);

        session = session.result;
        client.customerCustomerList(session , function (err, list){
          if(!err){
            console.log(client);
            console.log('User List', list);
          }else{
            console.log(err);
          }
        });
    });

});

2 个答案:

答案 0 :(得分:0)

我还没有为node.js找到可靠的soap模块。花了一些时间尝试在npm上调试或修改流行的那些,我接受了这个答案中提供的建议https://stackoverflow.com/a/22897376。到目前为止,它对我来说效果很好。

答案 1 :(得分:0)

没关系。我错过了一些必要的参数。