访问七牛私有空间资源

<?php
class get_private_url extends Action {
	var $privilege = Privilege::COACH_GENERAL;
	function filterParam() {
		$this->download_url = filter_input( INPUT_GET, 'url');
		return true;
	}
	function exec() {
		$accessKey = '';
		$secretKey = '';
		// 时间戳生成
		$now = time();
		$date = $now + 24*3600;
		// 下载凭证生成
		$download_url = $this->download_url."?e=".$date;
		$sign = hash_hmac("sha1", $download_url, $secretKey, true);
		$encodedSign = base64_encode($sign);
		$token = $accessKey.":".$encodedSign;
		$realdownloadurl = $download_url."&token=".$token;
		return [ 
				'realdownloadurl' => $realdownloadurl
		];
	}
}
原URL传递形式:http://bucketname.7xnhmh.com2.z0.glb.qiniucdn.com/2.jpg

需要注意采用七牛SDK中给出的URL安全的Base64编码函数

$encodedSign = \Qiniu\base64_urlSafeEncode( $sign ) ;

你可能感兴趣的:(PHP,七牛,私有空间下载资源)