maxzhang / suning-sdk
There is no license information available for the latest version (1.0.1) of this package.
SuningOpenSdk
1.0.1
2019-06-10 12:47 UTC
Requires
- php: >=7.0
This package is auto-updated.
Last update: 2025-03-15 15:34:42 UTC
README
基于苏宁开放平台SDK(PHP)封装的 Composer Package 组件包.
目录结构:
- source //苏宁SDK源码,参考迁移
- src //迁移后的代码
安装:
$ composer require maxzhang/suning-sdk
说明:
目前完成:
- 政企业务(govbus)
- 联盟商品(union)
- 优惠券(netalliance)
>其他官方功能API 添加封装方法 参考
/src/Request/govbus/
下的实现
使用方法:
use MaxZhang\SuningSdk\Request\Govbus\CategoryGetRequest;
use MaxZhang\SuningSdk\DefaultSuningClient;
$req = new CategoryGetRequest();
$req->setCheckParam('true');
$assertArray = [
'serverUrl' => 'http://openpre.cnsuning.com/api/http/sopRequest',
'appKey' => 'b49970b52c88dee1d7c1743da32cedd2',
'appSecret' => '2ae2da81c64ae149c2aeb99a535508b0',
'format' => 'json'
];
$client = new DefaultSuningClient($assertArray['serverUrl'], $assertArray['appKey'],
$assertArray['appSecret'], $assertArray['format']);
$resp = $client->execute($req);
$reqJson = $req->getReqJson();
print_r("请求报文:\n" . $reqJson);
print_r("\n返回响应报文:\n" . $resp);
laravel 框架中使用
>laravel 5.5以下安排完毕后需要自行配置ServiceProvider:
config/app.php
文件providers
中添加
MaxZhang\SuningSdk\ServiceProvider::class
'providers' => [
...
MaxZhang\SuningSdk\ServiceProvider::class
],
>laravel >=5.5 自动注册
1.安装完毕后,config/services.php添加appkey等相关配置
'suningSdk' => [
'appKey' => env('SUNING_SDK_APPKEY'),
'appSecret' => env('SUNING_SDK_APPSECRET'),
'serverUrl' => env('SUNING_SDK_SERVERURL'),
'format' => env('SUNING_SDK_FORMAT'),
],
2. .env文件中新增配置项
SUNING_SDK_APPKEY= 你的appkey
SUNING_SDK_APPSECRET= 你的appSecret
SUNING_SDK_SERVERURL=http://openpre.cnsuning.com/api/http/sopRequest
SUNING_SDK_FORMAT=json
3. 配置完毕,新建控制器 开始写业务代码
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use MaxZhang\SuningSdk\Request\Govbus\CategoryGetRequest;
use MaxZhang\SuningSdk\DefaultSuningClient;
class CategoryGet extends Controller
{
public function show(Request $request)
{
$req = new CategoryGetRequest();
$req->setCheckParam('true');
$resp =app('suningSdk')->execute($req);
$reqJson = $req->getReqJson();
print_r("请求报文:\n" . $reqJson);
print_r("\n返回响应报文:\n" . $resp);
$request->json($resp);
}
}
>如上,可以用两种方式来获取 MaxZhang\SunningSdk\DefaultSuningClient 实例:
方法注入
public function show(DefaultSuningClient $defaultSuningClient)
{
...
$response = $defaultSuningClient->execute('$req');
}
服务名访问
public function show()
{
...
$response =app('suningSdk')->execute($req);
}
相关链接
License
Apache Licence 2.0