You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
431 B
19 lines
431 B
9 months ago
|
<?php
|
||
|
require_once __DIR__ . '/../autoload.php';
|
||
|
|
||
|
use Qiniu\Auth;
|
||
|
use Qiniu\Storage\UploadManager;
|
||
|
|
||
|
$accessKey = 'Access_Key';
|
||
|
$secretKey = 'Secret_Key';
|
||
|
$auth = new Auth($accessKey, $secretKey);
|
||
|
|
||
|
// 空间名 http://developer.qiniu.com/docs/v6/api/overview/concepts.html#bucket
|
||
|
$bucket = 'Bucket_Name';
|
||
|
|
||
|
// 生成上传Token
|
||
|
$token = $auth->uploadToken($bucket);
|
||
|
|
||
|
// 构建 UploadManager 对象
|
||
|
$uploadMgr = new UploadManager();
|