You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
3.0 KiB
75 lines
3.0 KiB
8 months ago
|
<?php
|
||
|
/**
|
||
|
*
|
||
|
*
|
||
|
* @author suning
|
||
|
* @date 2018-11-16
|
||
|
*/
|
||
|
// 引入主文件
|
||
|
require_once(dirname(__FILE__).'/../../SuningSdk.php');
|
||
|
require_once(dirname(__FILE__).'/../../DefaultSuningClient.php');
|
||
|
$req = new PublishModifyRequest();
|
||
|
//赋值……
|
||
|
$req->setCmTitle("商品标题");
|
||
|
$req->setConventionBeginTime("2018-02-13 11:37:00");
|
||
|
$req->setConventionEndTime("2018-02-13 11:37:00");
|
||
|
$req->setConventionPoints("常规促销卖点");
|
||
|
$detailModule = new DetailModule();
|
||
|
$detailModule->setContent("5qih5Z2X5YyW6K+m5oOF5YaF5a65");
|
||
|
$detailModule->setModuleId("R2701001_1");
|
||
|
$detailModule->setModuleName("优惠信息");
|
||
|
$detailModule->setNum("1");
|
||
|
$detailModule->setType("usr_mod");
|
||
|
$req->setDetailModule(array($detailModule));
|
||
|
$req->setEndTime("2018-02-13 11:37:00");
|
||
|
$req->setHighBeginTime("2018-02-13 11:37:00");
|
||
|
$req->setHighEndTime("2018-02-13 11:37:00");
|
||
|
$req->setHighPoints("高级促销卖点");
|
||
|
$req->setIntroduction("电脑详情");
|
||
|
$req->setItemCode("naikeabc");
|
||
|
$req->setMobilePromotionLink("http://shop.suning.com/70088824/10108744.html");
|
||
|
$packingList = new PackingList();
|
||
|
$packingList->setPackingListName("电脑");
|
||
|
$packingList->setPackingListQty("1");
|
||
|
$req->setPackingList(array($packingList));
|
||
|
$req->setProductCode("750047486");
|
||
|
$req->setPromotionFlag("是");
|
||
|
$req->setPromotionLink("http://shop.suning.com/70088824/10108744.html");
|
||
|
$req->setPromotionPoints("活动关联文案");
|
||
|
$req->setSellingPoints("商品卖点");
|
||
|
$req->setStartTime("2018-02-13 11:37:00");
|
||
|
$supplierImgUrl = new SupplierImgUrl();
|
||
|
$supplierImgUrl->setUrlA("http://10.19.95.100/uimg/sop/commodity/623952902322391517989000_x.jpg");
|
||
|
$supplierImgUrl->setUrlB("http://10.19.95.100/uimg/sop/commodity/623952902322391517989000_x.jpg");
|
||
|
$supplierImgUrl->setUrlC("http://10.19.95.100/uimg/sop/commodity/623952902322391517989000_x.jpg");
|
||
|
$supplierImgUrl->setUrlD("http://10.19.95.100/uimg/sop/commodity/623952902322391517989000_x.jpg");
|
||
|
$supplierImgUrl->setUrlE("http://10.19.95.100/uimg/sop/commodity/623952902322391517989000_x.jpg");
|
||
|
$req->setSupplierImgUrl(array($supplierImgUrl));
|
||
|
$req->setVideoCode("108625");
|
||
|
$req->setMainPicVideoCode("108991");
|
||
|
$req->setHighlightWordone("亮点词1");
|
||
|
$req->setHighlightWordtwo("亮点词2");
|
||
|
$req->setHighlightWordthree("亮点词3");
|
||
|
|
||
|
//api入参校验逻辑开关,当测试稳定之后建议设置为 false 或者删除该行
|
||
|
$req -> setCheckParam('true');
|
||
|
$serverUrl = "http://openpre.cnsuning.com/api/http/sopRequest";
|
||
|
$appKey = "a13b8bd0efb06a770c57d1c370ce8ee7";
|
||
|
$appSecret = "f08ce9836c4bcfc708194594081f6690";
|
||
|
$client = new DefaultSuningClient($serverUrl,$appKey,$appSecret,'json');
|
||
|
$resp = $client -> execute($req);
|
||
|
$reqJson = getReqJson($req);
|
||
|
print_r("请求报文:\n".$reqJson);
|
||
|
print_r("\n返回响应报文:\n".$resp);
|
||
|
|
||
|
function getReqJson($req){
|
||
|
$paramsArray = $req -> getApiParams();
|
||
|
if(empty($paramsArray)){
|
||
|
$paramsArray = '';
|
||
|
}
|
||
|
$paramsArray = array('sn_request' => array('sn_body' => array(
|
||
|
"{$req -> getBizName()}" => $paramsArray
|
||
|
)));
|
||
|
return json_encode($paramsArray);
|
||
|
}
|
||
|
?>
|