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.
53 lines
1.9 KiB
53 lines
1.9 KiB
<?php
|
|
/**
|
|
*
|
|
*
|
|
* @author suning
|
|
* @date 2020-12-28
|
|
*/
|
|
// 引入主文件
|
|
require_once(dirname(__FILE__).'/../../SuningSdk.php');
|
|
require_once(dirname(__FILE__).'/../../DefaultSuningClient.php');
|
|
$req = new ActionriskQueryRequest();
|
|
//赋值……
|
|
$req->setActionType("1");
|
|
$req->setActivityCode("20050516554033782968");
|
|
$req->setAppId("nl87eipc8psd706ukbuiu8402");
|
|
$req->setAppType("3");
|
|
$req->setAppVersion("V12.2.12");
|
|
$req->setCutOrderNum("20050516554033782968");
|
|
$req->setDetect("mmds_97fc62e6ea2c41abf7745f51622c67b3");
|
|
$req->setDfpToken("THc0gl1713dc37bc5gJJx2a58");
|
|
$req->setGiftPickType("0");
|
|
$req->setInviteSnUnionId("5232db605f31ea8f0fa13eeda5da5232db6155f31ea800fa");
|
|
$req->setMiniSource("wechat");
|
|
$req->setReferenceURL("http://osposxgpre.admin.cnsuning.com/osposadmin/aplcf/toalconf.do");
|
|
$req->setSerialNo("snyg612_39eaf0e06bbc54c387425bd94990f80c");
|
|
$req->setSnUnionId("5232db605f31ea8f0fa13eeda5da5232db6155f31ea800fa");
|
|
$req->setTermiSys("IOS");
|
|
$req->setTermiType("PC");
|
|
$req->setToken("THE0Kg17157544d8fsIFbb0d0___w7DDp8KLw75ow5MZbMOyImjCqsONBcOFw7hawqrCssOg");
|
|
$req->setValiNo("6002318564154563465");
|
|
|
|
//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);
|
|
}
|
|
?>
|