We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2fdb4b commit 50e3375Copy full SHA for 50e3375
examples/mkzip.php
@@ -5,16 +5,16 @@
5
use Qiniu\Processing\PersistentFop;
6
7
// 去我们的portal 后台来获取AK, SK
8
-$accessKey = '4brtJLyWA3bplJKlkn7ZypPbzKcS-58MsF1cnsF4';
9
-$secretKey = 'jt8qbHTrBFAl6HZNt9Mmd2pcx122aJlJ-5mgS-7g';
+$accessKey = 'Access_Key';
+$secretKey = 'Secret_Key';
10
$auth = new Auth($accessKey, $secretKey);
11
12
13
-$bucket = 'rwxf';
+$bucket = 'Bucket_Name';
14
$key = '1.png';
15
16
// 异步任务的队列, 去后台新建: https://portal.qiniu.com/mps/pipeline
17
-$pipeline = 'abc';
+$pipeline = 'pipeline_name';
18
19
$pfop = new PersistentFop($auth, $bucket, $pipeline);
20
0 commit comments