First commit
This commit is contained in:
34
app/Common/extend/qiniu/examples/cdn_get_flux.php
Executable file
34
app/Common/extend/qiniu/examples/cdn_get_flux.php
Executable file
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
require_once __DIR__ . '/../autoload.php';
|
||||
|
||||
use \Qiniu\Cdn\CdnManager;
|
||||
|
||||
$accessKey = getenv('QINIU_ACCESS_KEY');
|
||||
$secretKey = getenv('QINIU_SECRET_KEY');
|
||||
|
||||
$auth = new Qiniu\Auth($accessKey, $secretKey);
|
||||
$cdnManager = new CdnManager($auth);
|
||||
|
||||
//获取流量和带宽数据
|
||||
//参考文档:http://developer.qiniu.com/article/fusion/api/traffic-bandwidth.html
|
||||
|
||||
$domains = array(
|
||||
"javasdk.qiniudn.com",
|
||||
"phpsdk.qiniudn.com"
|
||||
);
|
||||
|
||||
$startDate = "2017-08-20";
|
||||
$endDate = "2017-08-21";
|
||||
|
||||
//5min or hour or day
|
||||
$granularity = "day";
|
||||
|
||||
//获取流量数据
|
||||
list($fluxData, $getFluxErr) = $cdnManager->getFluxData($domains, $startDate, $endDate, $granularity);
|
||||
if ($getFluxErr != null) {
|
||||
var_dump($getFluxErr);
|
||||
} else {
|
||||
echo "get flux data success\n";
|
||||
print_r($fluxData);
|
||||
}
|
||||
Reference in New Issue
Block a user