使用之前,请阅读Shopee开发文档V2 https://open.shopee.com/developer-guide/4
$ composer require onetech/easy-shopee -vvv
<?php
use Onetech\EasyShopee\Exception\ShopeeException;
use Onetech\EasyShopee\Shopee;
require '../vendor/autoload.php';
$redis = new Redis();
$redis->connect('redis',6379,1);
$redis->auth('secret');
$cache = new \Doctrine\Common\Cache\RedisCache();
$cache->setRedis($redis);
$shopee = new Shopee([
'app_key' => 'Your Test Partner_id',//int
'app_secret' => 'Your Test Key',//string
'debug' => app()->isDebug(),
'sandbox' => false,
'log' => [
'name' => 'Shopee',
'file' => sys_get_temp_dir() . '/Shopee.log',
'level' => 'debug',
'permission' => 0777,
],
'cache' => $cache
]);
使用file
$cache = new Doctrine\Common\Cache\FilesystemCache(sys_get_temp_dir());
使用redis
$redis = new Redis();
$redis->connect('redis',6379,1);
$redis->auth('secret');
$cache = new \Doctrine\Common\Cache\RedisCache();
$cache->setRedis($redis);