From 50e3375a7044d5f94de9570ce5966c1b6174bda3 Mon Sep 17 00:00:00 2001 From: rwifeng Date: Mon, 11 Jan 2016 21:20:52 +0800 Subject: [PATCH] rm ak sk --- examples/mkzip.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/mkzip.php b/examples/mkzip.php index f3f2666b..6c8ac59d 100644 --- a/examples/mkzip.php +++ b/examples/mkzip.php @@ -5,16 +5,16 @@ use Qiniu\Processing\PersistentFop; // 去我们的portal 后台来获取AK, SK -$accessKey = '4brtJLyWA3bplJKlkn7ZypPbzKcS-58MsF1cnsF4'; -$secretKey = 'jt8qbHTrBFAl6HZNt9Mmd2pcx122aJlJ-5mgS-7g'; +$accessKey = 'Access_Key'; +$secretKey = 'Secret_Key'; $auth = new Auth($accessKey, $secretKey); -$bucket = 'rwxf'; +$bucket = 'Bucket_Name'; $key = '1.png'; // 异步任务的队列, 去后台新建: https://portal.qiniu.com/mps/pipeline -$pipeline = 'abc'; +$pipeline = 'pipeline_name'; $pfop = new PersistentFop($auth, $bucket, $pipeline);