订阅私有频道需要订阅私有频道验证信息

时间:2017-11-10 04:55:20

标签: php jquery laravel websocket pusher

尝试使用Pusher订阅私人频道。但每次尝试订阅时我都会收到以下错误。这没有任何意义,因为它显然返回了身份验证信息。

Pusher : Error : {"type":"WebSocketError","error":{"type":"PusherError","data":{"code":null,"message":"Auth info required to subscribe to private-sadfsadf"}}}

通常它会返回状态为200的auth json(下面)。

"{\"auth\":\"0b1ce844906bd4d82cb4:21571e5667bf99f17bbf67ae0411594560748fde30b9edeca653653158f8a1f5\"}"

推送PHP (缩短)

$pusher = new Pusher($app_key, $app_secret, $app_id);
$auth = $pusher->socket_auth($postvars['channel_name'],  $postvars['socked_id']);
if ($auth)
    return $response->withJSON($auth);
else
    return $response->withStatus(403);

Pusher JS

var pusher = new Pusher('0b1ce844906bd4d82cb4', {
    cluster: 'us2',
    encrypted: true,
    authEndpoint: '{{site.uri.public}}/chat/auth/{{game.id}}',
    authTransport: 'ajax',
    auth: {
        params: {
            'csrf_name': '{{site.csrf.name}}',
            'csrf_value': '{{site.csrf.value}}'             
        },
        headers: {
            '{{site.csrf.name}}': '{{site.csrf.value}}'
        }
    }
});

1 个答案:

答案 0 :(得分:0)

我遇到了此错误,这是由于将BROADCAST_DRIVER设置为redis而不是pusher引起的。