在一个聊天框架中看到这段代码,大概是用来接收服务器消息的,但是不明白是具体是什么时候运行的.
请问有关于HTTP_X_PUSHER_SIGNATURE的文档吗?
$pusher = $this->push();
$webhook_signature = $_SERVER['HTTP_X_PUSHER_SIGNATURE'] ?? '';
$body = file_get_contents('php://input');
$expected_signature = hash_hmac('sha256', $body, app_secret, false);
if ($webhook_signature == $expected_signature) {
//执行具体的操作
}
自定义的签名参数。