janhve/lumen-tencent-cloud

This is a Laravel expansion for the Tencent Cloud.

dev-master / 1.0.x-dev 2022-04-18 15:23 UTC

This package is not auto-updated.

Last update: 2024-04-16 23:06:31 UTC


README

This is a tencent cloud expansion for the laravel

环境需求

  • PHP >= 7.0

Installation

composer require janhve/lumen-tencent-cloud

for Laravel

This service provider must be registered.

// config/app.php

'providers' => [
    '...',
    Janhve\TencentCloud\TencentCloudServiceProvider::class,
];

Use

try {
	$cdn = TencentCloud::get('cdn');
	$cdn->RefreshObjectCaches([
		'ObjectPath' => [
			'http://www.baidu.com',
		],
		'ObjectType' => 'File'
	]);
} catch (\Exception $e) {
	print_r($e->getMessage());
}