我构建了一个 Laravel 应用程序,尝试通过 Pusher.com 实现 Web Sockets(第一次)。
虽然我的公共频道订阅工作正常,但我很难让私人频道正常工作。
根据 laravel 文档,您需要在我拥有的 配置文件中取消注释 App\Providers\BroadcastServiceProvider::class 。app.php
我的channels.php 有以下规则
Broadcast::channel('App.User.{id}', function ($user, $id) {
return (int) $user->id === (int) $id;
});
Broadcast::channel('private-queue.business.{business}', function ($user, Business $business) {
// @todo: add real authentication
return true;
});
我还需要添加其他内容才能使/pusher/auth端点正常工作吗?
守着一只汪
慕桂英3389331