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.
24 lines
867 B
24 lines
867 B
<?php
|
|
/**
|
|
* 店铺优惠券活动详情查询
|
|
*
|
|
* @author suning
|
|
* @date 2014-10-16
|
|
*/
|
|
// 引入主文件
|
|
require_once(dirname(__FILE__).'/../../SuningSdk.php');
|
|
require_once(dirname(__FILE__).'/../../DefaultSuningClient.php');
|
|
require_once(dirname(__FILE__).'/../../request/promotesale/GetShopCoupDetailRequest.php');
|
|
$req = new GetShopCoupDetailRequest();
|
|
//赋值……
|
|
$req->setCouponId("112212121");
|
|
|
|
//api入参校验逻辑开关,当测试稳定之后建议设置为 false 或者删除该行
|
|
$req -> setCheckParam('true');
|
|
$serverUrl = "http://opensit.cnsuning.com/api/http/sopRequest";
|
|
$appKey = "36c8e577eb29a23b2a80f2e412a42393";
|
|
$appSecret = "a1a947c89eeca125be8872cf94bf698f";
|
|
$client = new DefaultSuningClient($serverUrl,$appKey,$appSecret,'json');
|
|
$resp = $client -> execute($req);
|
|
print_r("返回响应报文:".$resp);
|
|
?>
|