Skip to content

Commit 069af0c

Browse files
committed
修改
1 parent f666e1b commit 069af0c

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

examples/saveas.php

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
<?php
2-
require_once __DIR__ . '/../autoload.php';
3-
4-
use Qiniu\Auth;
5-
use Qiniu\Processing\PersistentFop;
2+
require_once __DIR__ . '/../autoload.php';
63

7-
// 后台来获取AK, SK
8-
$accessKey = 'Access_Key';
9-
$secretKey = 'Secret_Key';
4+
use Qiniu\Auth;
5+
use Qiniu\Processing\PersistentFop;
106

11-
//生成EncodedEntryURI的值
12-
$entry='<bucket>:<Key>';//<Key>为生成缩略图的文件名
13-
//生成的值
14-
$encodedEntryURI=\Qiniu\base64_urlSafeEncode($entry);
7+
// 后台来获取AK, SK
8+
$accessKey = 'Access_Key';
9+
$secretKey = 'Secret_Key';
1510

16-
//使用SecretKey对新的下载URL进行HMAC1-SHA1签名
17-
$newurl = "78re52.com1.z0.glb.clouddn.com/resource/Ship.jpg?imageView2/2/w/200/h/200|saveas/".$encodedEntryURI;
11+
//生成EncodedEntryURI的值
12+
$entry='<bucket>:<Key>';//<Key>为生成缩略图的文件名
13+
//生成的值
14+
$encodedEntryURI=\Qiniu\base64_urlSafeEncode($entry);
1815

19-
$sign = hash_hmac("sha1", $newurl, $secretKey, true);
16+
//使用SecretKey对新的下载URL进行HMAC1-SHA1签名
17+
$newurl = "78re52.com1.z0.glb.clouddn.com/resource/Ship.jpg?imageView2/2/w/200/h/200|saveas/".$encodedEntryURI;
2018

21-
//对签名进行URL安全的Base64编码
22-
$encodedSign = \Qiniu\base64_urlSafeEncode($sign);
23-
//最终得到的完整下载URL
24-
$finalURL = "http://".$newurl."/sign/".$accessKey.":".$encodedSign;
19+
$sign = hash_hmac("sha1", $newurl, $secretKey, true);
2520

26-
$callbackBody = file_get_contents("$finalURL");
21+
//对签名进行URL安全的Base64编码
22+
$encodedSign = \Qiniu\base64_urlSafeEncode($sign);
23+
//最终得到的完整下载URL
24+
$finalURL = "http://".$newurl."/sign/".$accessKey.":".$encodedSign;
2725

28-
echo $callbackBody;
26+
$callbackBody = file_get_contents("$finalURL");
27+
28+
echo $callbackBody;

0 commit comments

Comments
 (0)