Skip to content

Instantly share code, notes, and snippets.

@beansme
Last active August 29, 2015 14:01
Show Gist options
  • Save beansme/cf2178fa2cecce46606c to your computer and use it in GitHub Desktop.
Save beansme/cf2178fa2cecce46606c to your computer and use it in GitHub Desktop.
public function getToken(){
$accessKey = '';
$secretKey = '';
$bucket = "";
$time = now() + 3600;
$data = array(
"scope"=>$bucket,
"deadline"=>$time,
"callbackUrl" => '',
"callbackBody" => 'key=$(key)&state=SUCCESS&name=$(fname)&size=$(fsize)&w=$(imageInfo.width)&h=$(imageInfo.height)&user=$(endUser)',
"endUser" => ''
);
$data = json_encode($data);
$find = array('+', '/');
$replace = array('-', '_');
$data = str_replace($find, $replace, base64_encode($data));
$sign = hash_hmac('sha1', $data, $secretKey, true);
$result = $accessKey . ':' . str_replace($find, $replace, base64_encode($sign)).':'.$data ;
echo $result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment