chengdu-blue-brothers/openapi-php-sdk
最新稳定版本:v0.0.1
Composer 安装命令:
composer require chengdu-blue-brothers/openapi-php-sdk
包简介
蓝色兄弟 openapi sdk
README 文档
README
使用Composer安装
composer require chengdu-blue-brothers/openapi-php-sdk
api 接口调用
use BlueBrothers\Openapi\Api\Client;
const testMerchantId = "23329";
const testSecretKey = "8db16e8cc8363ed4eb4c14f9520bcc32";
const isProd = false; // 是否是生产环境
try {
$client = new Client(testMerchantId, testSecretKey, isProd, 10);
$res = $client->RechargeProduct();
} catch (\Exception $e) {
echo $e->getMessage();
}
解密卡密
use BlueBrothers\Openapi\Util;
$encCode = 'ezvbQdCehTDO7M7g22FjThOCypEhk/kswonAbdEEVsY=';
// 示例的密钥key
$secretKey = '8db16e8cc8363ed4eb4c14f9520bcc32';
// 第二步:aes-256-ecb 解密
try {
$decryptedCode = Util::getDecodeCardMap($encCode, $secretKey) ;
} catch (\Exception $e) {
echo $e->getMessage();
}
统计信息
- 总下载量: 69
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-01-02