11

如何Single Call使用 Magento 的 XMLRPC 在 Android 中获取多个产品的详细信息。我能够catalog_product.list使用 XMLRPC 的函数获取产品列表。

现在,我有了所有产品的SKU id。我可以使用该功能获取每个产品的媒体详细信息product_media.list

如果假设我有 10 个产品,我必须product_media.list为每个产品调用 10 次方法,这需要很长时间。

那么,我该如何调用Android中的multiCall函数Magentophp发布了许多调用该函数的教程,multiCall但我无法在 Android 中模仿。

因此,如果您有类似的代码片段可以让我理解multiCall功能(适用于 Android),请帮助我,以便我可以进一步使用它。
谢谢。


Josua Marcel C来自答案的PHP 代码示例


$session = $client->call('login', array('apiUser', 'apiKey'));
$client->call('call', array($session,'somestuff.method', array('arg1', 'arg2', 'arg3')));  
$client->call('call', array($session, 'somestuff.method', 'arg1'));   
$client->call('call', array($session, 'somestuff.method'));

$client->call('multiCall', 
               array($session,
                  array(
                      array('somestuff.method', 'arg1'),
                      array('somestuff.method', array('arg1', 'arg2')),
                      array('somestuff.method')
                   )
              )
            );  

我想在Android中模仿上面调用multiCall()Magento函数的php代码。


4

3 回答 3

3

经过长时间的研究,我得到了调用方法的中途解决方案,但我仍然不知道如何获取变量中的响应并使用它。 multiCall()ErrorServer

任何了解它的人都可以编辑我的答案,我将感谢他。

Code我使用的是 :

Object[] skuid=new Object[product_list.size()];
Object calling[]=new Object[product_list.size()];

for(int m=0;m<product_list.size();m++)
{
    skuid[m]=new Object[]{product_list.get(m).getp_Sku()};
    calling[m]=new Object[]{"catalog_product_attribute_media.list",skuid[m]};   
}

try 
{
  client.callEx("multiCall",new Object[]{Utils.sessionId,calling});
}
catch (XMLRPCException e) 
{
    e.printStackTrace();
}  

致谢:

我已经研究过由 发布的答案 Iain

于 2012-08-29T10:52:53.030 回答
2

答案

由于 android 是基于 java 应用程序,您可以使用它。

package org.apache.xmlrpc;

import java.util.Hashtable;
import java.util.Vector;

public class MultiCall
implements ContextXmlRpcHandler
{
    public Object execute(String method, Vector params, XmlRpcContext context)
            throws Exception
    {
        if ("multicall".equals(method))
        {
            return multicall(params, context);
        }

        throw new NoSuchMethodException("No method '" + method + "' in " + this.getClass().getName());
    }

    public Vector multicall(Vector requests, XmlRpcContext context)
    {
        // The array of calls is passed as a single parameter of type array.
        requests=(Vector)requests.elementAt(0);
        Vector response = new Vector();
        XmlRpcServerRequest request;
        for (int i = 0; i < requests.size(); i++)
        {
            try
            {
                Hashtable call = (Hashtable) requests.elementAt(i);
                request = new XmlRpcRequest((String) call.get("methodName"),
                                            (Vector) call.get("params"));
                Object handler = context.getHandlerMapping().getHandler(request.getMethodName());
                Vector v = new Vector();
                v.addElement(XmlRpcWorker.invokeHandler(handler, request, context));
                response.addElement(v);
            }
            catch (Exception x)
            {
                String message = x.toString();
                int code = (x instanceof XmlRpcException ?
                            ((XmlRpcException) x).code : 0);
                Hashtable h = new Hashtable();
                h.put("faultString", message);
                h.put("faultCode", new Integer(code));
                response.addElement(h);
            }
        }
        return response;
    }
}

来源


既然 Magento 支持 SOAP API,为什么不使用 SOAP API v1?因为 SOAP 很强大。试试看这里XML-RPC 和 SOAP 有什么区别?

Soap 消息的解析不包含在 Android 运行时中,因此它并不是很简单。您应该使用外部库。我正在使用 ksoap2。

如果你在StackOverflow上搜索,你会看到很多关于如何使用它的示例。例如这里

更多参考:链接1 链接2

使用 PHP 的多重调用

$client = new Zend_XmlRpc_Client('http://magentohost/api/xmlrpc/');

// If somestuff requires api authentification,
// we should get session token
$session = $client->call('login', array('apiUser', 'apiKey'));

$client->call('call', array($session, 'somestuff.method', array('arg1', 'arg2', 'arg3')));
$client->call('call', array($session, 'somestuff.method', 'arg1'));
$client->call('call', array($session, 'somestuff.method'));
$client->call('multiCall', array($session,
     array(
        array('somestuff.method', 'arg1'),
        array('somestuff.method', array('arg1', 'arg2')),
        array('somestuff.method')
     )
));

// If you don't need the session anymore
$client->call('endSession', array($session));
于 2012-08-19T04:01:43.683 回答
1

首先以调用catalog_product.list 的任何方式登录。确保sessionclientproduct_ids拥有正确的价值观。如果您不需要登录这些操作,请设置session = null(如果这不起作用,请尝试根本不通过会话:))。然后:

Object[][] calls = new Object[product_ids.length];
for (int i = 0; i < product_ids.length; i++) {
    calls[i] = new Object[] { "product_media.list", product_ids[i] };
}
product_media_ids = client.call("multiCall", new Object[] { session, calls });

product_media_ids那么应该是一个产品图像数组的数组——也就是说,每个元素都是product_media_ids来自product_media.list.

恐怕代码未经测试。

于 2012-08-20T08:31:22.737 回答