thisshop SDK
composer require yc-hwc/laravel-thisshop
$config = [
'thisshopkUrl' => '',
'appId' => '',
'appSecret' => '',
'signSecret' => '',
'token' => '',
];
$thisshopSDK = \PHPThisshop\ThisshopSDK::config($config);
$config = [
'thisshopkUrl' => '',
'appId' => '',
'appSecret' => '',
];
$thisshopSDK = \PHPThisshop\ThisshopSDK::config($config);
$response = $thisshopSDK->accessToken()->post();
print_r($response);
$config = [
'thisshopkUrl' => '',
'appId' => '',
'appSecret' => '',
'token' => ''
];
$thisshopSDK = \PHPThisshop\ThisshopSDK::config($config);
$response = $thisshopSDK->tokenCheck()->post();
print_r($response);
$config = [
'thisshopkUrl' => '',
'appId' => '',
'signSecret' => '',
'token' => '',
];
$thisshopSDK = \PHPThisshop\ThisshopSDK::config($config);
$response = $thisshopSDK->business()
->withMethod('thisshop.order.list.get')
->withData([
'orderStatus' => 0,
])
->post();
print_r($response);