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.
yanzong/extend/suning-sdk-php/config/config.php

32 lines
720 B

8 months ago
<?php
/**
* 苏宁开放平台配置文档
*
* @author jerry(14033184@cnsuning.com)
* @date 2014-05-21
*/
// 分配给应用的访问令牌
define('APP_KEY', 'ea13e4bb325235bfbd39927dbc32cbbd');
// APP_KEY对应的密钥
define('APP_SECRET', 'b4b797916f4cf211e4c043603f3d8139');
// 服务器地址
define('SERVER_URL', 'http://openpre.cnsuning.com/api/http/sopRequest');
// 提交及返回的数据格式 json or xml
define('FORMAT', 'xml');
// 是否打开入参检查,测试及生产建议设置为TRUE
define('CHECK_REQ', TRUE);
// 签名信息 版本
define('VERSION', 'v1.2');
// SDK语言版本
define('USER_AGENT','suning-sdk-php');
// SDK版本
define('SDK_VERSION','suning-sdk-php-beta0.1');
?>