This is a Laravel expansion for the Tencent Cloud.
larva/laravel-tencent-cloud is a Laravel package for this is a laravel expansion for the tencent cloud..
It currently has 1 GitHub stars and 378 downloads on Packagist (latest version 1.0.6).
Install it with composer require larva/laravel-tencent-cloud.
Discover more Laravel packages by larva
or browse all Laravel packages to compare alternatives.
Last updated
This is a tencent cloud expansion for the laravel
composer require larva/laravel-tencent-cloud
This service provider must be registered.
// config/app.php
'providers' => [
'...',
Larva\TencentCloud\TencentCloudServiceProvider::class,
];
try {
$cdn = TencentCloud::get('cdn');
$cdn->RefreshObjectCaches([
'ObjectPath' => [
'http://www.baidu.com',
],
'ObjectType' => 'File'
]);
} catch (\Exception $e) {
print_r($e->getMessage());
}
#API网关