电销机器人开发引导
发布时间:1970-01-01 08:00
发布者:[db:作者]
浏览次数:
private static function generateSign (String $appKey, String $appSecret,String $date)
{
if (function_exists( hash_hmac )) {
$stringToSign = $appKey . \n . $date;
return base64_encode(hash_hmac( sha1 , $stringToSign, $appSecret, true));
}
}