通过 Node JS 使用 Magento SOAP API

问题描述 投票:0回答:2

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

varsoap = require('soap');

soap.createClient(url,函数(错误,客户端){

    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);
          }
        });
    });

});
node.js magento soap magento-soap-api
2个回答
0
投票

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


0
投票

没关系。我缺少一些必需的参数。

© www.soinside.com 2019 - 2024. All rights reserved.