lightinthebox火车头数据采集器(20120812更新) 使用火车头接口技术一键批量采集 批量发布 批量去水印 接口技术

 

lightintebox 如何 实现 数据采集,lightinthebox中如何实现以下功能:(欢迎广大网友交流 qq:158393237 旺旺:  q459255119)

1  找供应商采购谈判 给你进货价
2  一键采集供应商给你的所有商品(批量采集产品价格、批量采集多图、批量发布、批量去水印、批量打上你的店标和logo)
3   “叮”的一声 ,1万条来自不同地区供应商的产品全部发布到你的网站了,而且都是真真实实的成本价、销售价业务数据,及时报告库存不足,那么剩下的是不是就剩下网络营销了呢?
鉴于很多用户的网店都需要采集数据,普通发布模块处理商品多图以及商品属性等很难实现,并且商品对于分类较多采集目标站,多分类的手工添加真的是麻烦死

快客特意做了这个接口并增加了自动识别商品属性,自动添加商品分类品牌,以及多图的功能,自发布以来,受到不少网商朋友的好评!
接口自动识别商品属性

lightintebox采集程序简介

  • 本套程序为本人研究php而开发,需配合火车采集器使用
  • 支持lightintebox,自动下载商品图片,支持自动建立品牌分类,支持自定义商品类型
  • 经数十位客户测试通过,保证安全,高效,精准
  • 到目前为止,我们是最专业的lightintebox采集服务提供商,功能性及易用性等均居首位!
  • 本产品批量去水印,批量打上自己的店标和logo。
  • 本产品批量查询成本价,批量进行供应商采购优先度管理,进行物料BOM采购替代料管理。
  • 本产品提供多供应商供应产品解决方案,能再1分钟之内响应客户需要提供最优供应商的产品,提供供应商权重比较。

功能简介

  1. 常见采集字段均可实现,字段包括 商品名称,详细描述,图片,多图相册等。
  2. 可以自动建立并匹配商品品牌,不存在的商品品牌可以自动添加为新品牌。
  3. 可以自动创建并匹配商品分类(支持多级分类)(您只需添加列表页网址即可,采集只是时间问题,您没有任何工作量)。
  4. 自定义重复商品检测开关。
  5. 支持目标站远程图片自动下载,并生成缩略图,支持商品相册(多图)。
  6. 支持自定义商品类型,商品属性的发布。
  7. 2012年1月10更新,支持自动创建商品类型,自动创建属性组,属性项
  8. 20120214更新,支持采集发布评论

我们保证安全、精准、高效,并有大量客户使用测试,价格不打折,服务不打折!!!

 

 

 

 

其它采集接口目录:

入库代码:

//添加产品 
function add_product( &$products_id, $current_category_id, $products_name = "", $products_description = "", $products_price = "0", $products_image = "", $products_model = "", $products_price_gross = "0", $products_weight = "", $products_quantity = "0", $manufacturers_id = "", $metatags_title = "", $metatags_keywords = "", $metatags_description = "", $products_url = "", $products_discount_type = "0", $products_discount_type_from = "0", $products_price_sorter = "0", $products_status = "1", $products_date_available = "", $manufacturers_id = "", $product_is_free = "0", $product_is_call = "0", $products_priced_by_attribute = "0", $products_tax_class_id = "0", $products_virtual = "0", $product_is_always_free_shipping = "0", $products_qty_box_status = "1", $products_quantity_order_min = "1", $products_quantity_order_max = "0", $products_quantity_order_units = "1", $products_quantity_mixed = "1", $img_dir = "", $image_delete = "0", $products_image_manual = "", $products_sort_order = "0" )
{
 global $db;
 $products_name = string2multi_languages_array( $products_name );
 $products_description = string2multi_languages_array( $products_description );
 $products_url = string2multi_languages_array( $products_url );
 //echo $products_image;
 //echo  products_quantity;
 if ( $products_image )
 {
  //echo $img_dir;
  $path = pathinfo( $products_image );
  //echo $path;
  $path['basename'] = strip_spec_basename( $path['basename'] );
  //ECHO $path['basename']; 文件名
  $destination = DIR_FS_CATALOG_IMAGES.$img_dir.$path['basename'];
  //echo $img_dir."h";
  //echo $destination;E:/srv/web/zen1/images/8ac33885-f224-4c6b-aebc-b5407ad201f5.jpg
  $dir = DIR_FS_CATALOG_IMAGES.$img_dir;
  //echo $products_image;
  //echo $img_dir;E:/srv/web/zen/images/
  //echo $destination;E:/srv/web/zen/images/T1cQpMXaJyXXXXXXXX-80-80.jpg
  $info = getremoteimage( $products_image, $destination );
  //echo  $info;  //info  为空
  
  $products_image = $info ? $img_dir.$path['basename'] : "";
  
  //$products_image=fom_img_path($products_image);
   // echo $products_image;空
 }
 

 if ( !$products_image )
 {
  
  exit( "图片上传失败" );
  
 }

 
 
 
 $products_date_available = db_prepare_input( $products_date_available );
 $products_date_available = date( "Y-m-d" ) < $products_date_available ? $products_date_available : "null";
 $tmp_value = db_prepare_input( $products_quantity );
 //$products_quantity = !zen_not_null( $tmp_value ) && $tmp_value == "" || $tmp_value == 0 ? 0 : $tmp_value;
 $products_quantity = 1000;
 $tmp_value = db_prepare_input( $products_price );
 $products_price = !zen_not_null( $tmp_value ) && $tmp_value == "" || $tmp_value == 0 ? 0 : $tmp_value;
 $tmp_value = db_prepare_input( $products_weight );
 $products_weight = $tmp_value == "" || $tmp_value == 0 ? 0 : $tmp_value;
 $sql_data_array = array(
  "products_quantity" =>db_prepare_input( ( integer ) $products_quantity ),
  "products_type" => db_prepare_input( $_GET['product_type'] ),
  "products_model" => db_prepare_input( $products_model ),
  "products_price" => $products_price,
  "products_date_available" => $products_date_available,
  "products_weight" => $products_weight,
  "products_status" => db_prepare_input( ( integer )$products_status ),
  "products_virtual" => db_prepare_input( ( integer )$products_virtual ),
  "products_tax_class_id" => db_prepare_input( ( integer )$products_tax_class_id ),
  "manufacturers_id" => $manufacturers_id,
  "products_quantity_order_min" => db_prepare_input( $products_quantity_order_min ),
  "products_quantity_order_units" => db_prepare_input( $products_quantity_order_units ),
  "products_priced_by_attribute" => db_prepare_input( $products_priced_by_attribute ),
  "product_is_free" => db_prepare_input( ( integer )$product_is_free ),
  "product_is_call" => db_prepare_input( ( integer )$product_is_call ),
  "products_quantity_mixed" => db_prepare_input( $products_quantity_mixed ),
  "product_is_always_free_shipping" => db_prepare_input( ( integer )$product_is_always_free_shipping ),
  "products_qty_box_status" => db_prepare_input( $products_qty_box_status ),
  "products_quantity_order_max" => db_prepare_input( $products_quantity_order_max ),
  "products_sort_order" => ( integer )db_prepare_input( $products_sort_order ),
  "products_discount_type" => db_prepare_input( $products_discount_type ),
  "products_discount_type_from" => db_prepare_input( $products_discount_type_from ),
  "products_price_sorter" => db_prepare_input( $products_price_sorter )
 );
 
 $sql_data_array['products_image'] = $products_image;
 $new_image = "true";
 if ( $image_delete == 1 )
 {
  $sql_data_array['products_image'] = "";
  $new_image = "false";
 }
 $insert_sql_data = array(
  "products_date_added" => "now()",
  "master_categories_id" => ( integer )$current_category_id
 );
 $sql_data_array = array_merge( $sql_data_array, $insert_sql_data );
 zen_db_perform( TABLE_PRODUCTS, $sql_data_array );
 $products_id = zen_db_insert_id( );
 zen_update_products_price_sorter( $products_id );
 $db->execute( "insert into ".TABLE_PRODUCTS_TO_CATEGORIES."\r\n                    (products_id, categories_id)\r\n                    values ('".( integer )$products_id."', '".( integer )$current_category_id."')" );
 $languages = zen_get_languages( );
 $i = 0;
 $n = sizeof( $languages );
 for ( ; $i < $n; ++$i )
 {
  $language_id = $languages[$i]['id'];
  $sql_data_array = array(
   "products_name" => db_prepare_input( $products_name[$language_id] ),
   "products_description" => db_prepare_input( $products_description[$language_id] ),
   "products_url" => db_prepare_input( $products_url[$language_id] )
  );
  $insert_sql_data = array(
   "products_id" => $products_id,
   "language_id" => $language_id
  );
  $sql_data_array = array_merge( $sql_data_array, $insert_sql_data );
  zen_db_perform( TABLE_PRODUCTS_DESCRIPTION, $sql_data_array );
 }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值