产品管理

产品管理接口格式

String productManagement(String action, String params, BLLetAsyncRequestCallbacker callbacker)

获取类别下品牌列表

        action: GetBrandList
        params:
        {
            "category":"", //sp, rm
        }
        返回:
        {
            "status":0 , //获取结果
            "msg": "success",
            "brands": [] // 品牌列表
        }

获取品牌下产品列表

    action: GetProductListByBrand
    params:
    {
        "category" : "" , // 设备类型  1/2/3/…
        "brand":"" , // 品牌类型
    }
    返回:
    {
        "status":0 , //获取结果
        "msg": "success",
        "products": []  // 型号列表
    }

产品管理通用HTTP接口

该接口封装产品管理相关HTTP请求,使用前需了解相关云端API参数

    action:ProductCommonHttpRequest
    params:
        {
            "urlPath" : "xxxxx",            // URL路径 不包含 domain
            "head" : {},                    // HTTP请求头
            "body" : {}                     // HTTP请求内容
        }
    返回:
        {}      // 云端返回数据