verifyCallback() public method

public verifyCallback ( $contentType, $originAuthorization, $url, $body )
Ejemplo n.º 1
0
<?php

require_once __DIR__ . '/../autoload.php';
use Qiniu\Auth;
$accessKey = 'Access_Key';
$secretKey = 'Secret_Key';
$auth = new Auth($accessKey, $secretKey);
//获取回调的body信息
$callbackBody = file_get_contents('php://input');
//回调的contentType
$contentType = 'application/x-www-form-urlencoded';
//回调的签名信息,可以验证该回调是否来自七牛
$authorization = $_SERVER['HTTP_AUTHORIZATION'];
//七牛回调的url,具体可以参考:http://developer.qiniu.com/docs/v6/api/reference/security/put-policy.html
$url = 'http://172.30.251.210/callback.php';
$isQiniuCallback = $auth->verifyCallback($contentType, $authorization, $url, $callbackBody);
if ($isQiniuCallback) {
    $resp = array('ret' => 'success');
} else {
    $resp = array('ret' => 'failed');
}
echo json_encode($resp);
Ejemplo n.º 2
0
 /**
  * 检测请求是否为七牛的回调
  * @param $contentType
  * @param $originAuthorization
  * @param $url
  * @param $body
  * @return bool
  */
 public function verifyCallback($contentType, $originAuthorization, $url, $body)
 {
     $auth = new Auth($this->accessKey, $this->secretKey);
     return $auth->verifyCallback($contentType, $originAuthorization, $url, $body);
 }