Laravel Websockets广播,但不显示在仪表板中



我正在尝试广播一个事件,但它不起作用,也没有出现任何错误。我正在使用https://github.com/beyondcode/laravel-websockets

我在laravel.log 中得到了这个

[2020-10-18 14:24:46] local.INFO: Broadcasting [AppEventsTestEvent] on channels [presence- 
TestChannel] with payload:
{
"message": "123455",
"user": {
"id": 1,
"name": "parsa",
"email": "12parsa@gmail.com",
"email_verified_at": null,
"password": "$2y$10$gD6FxFdnzNawrPfzq.cleuXlBN00nKL.ILgQl3pM0dsgBfrOsam0y",
"remember_token": null,
"created_at": "2020-10-02T17:50:32.000000Z",
"updated_at": "2020-10-02T17:50:32.000000Z",
"banned": 0,
"last_read_at": "2020-10-16 17:24:21",
"profile_url": "http://localhost:8000/others/user-profile.png",
"media": []
},
"socket": null
}  

但在http://localhost:8000/laravel-websockets没有显示新事件,laravel echo也没有触发太多

config/webpackets.hp:

'apps' => [
[
'id' => env('PUSHER_APP_ID'),
'name' => env('APP_NAME'),
'key' => env('PUSHER_APP_KEY'),
'secret' => env('PUSHER_APP_SECRET'),
'path' => env('PUSHER_APP_PATH'),
'capacity' => null,
'enable_client_messages' => true,
'enable_statistics' => true,
],
],

config/broadcasting.php:

'pusher' => [
'driver' => 'pusher',
'key' => env('PUSHER_APP_KEY'),
'secret' => env('PUSHER_APP_SECRET'),
'app_id' => env('PUSHER_APP_ID'),
'options' => [
'cluster' => env('PUSHER_APP_CLUSTER'),
'useTLS' => true,
'host' => '127.0.0.1',
'port' => 6001,
'scheme' => 'http'
],
],

App\Events\TestEvent.php:

namespace AppEvents;
use IlluminateBroadcastingChannel;
use IlluminateBroadcastingInteractsWithSockets;
use IlluminateBroadcastingPresenceChannel;
use IlluminateContractsBroadcastingShouldBroadcast;
use IlluminateFoundationEventsDispatchable;
use IlluminateQueueSerializesModels;
use ModulesUserEntitiesUser;
class TestEvent implements shouldBroadcast
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $message;
public $user;
/**
* Create a new event instance.
* @param User $user
* @param $message
*/
public function __construct(User $user, $message)
{
$this->message = $message;
$this->user = $user;
}
/**
* Get the channels the event should broadcast on.
*
* @return IlluminateBroadcastingChannel|array
*/
public function broadcastOn()
{
return new PresenceChannel('TestChannel');
}
}

routes/Channels.php

Broadcast::channel('TestChannel', function ($user) {
return $user;
});

.env:

PUSHER_APP_ID=myId
PUSHER_APP_KEY=myKey
PUSHER_APP_SECRET=mySecret
PUSHER_APP_CLUSTER=mt1

我正在执行的行:

broadcast(new TestEvent(User::find(1), $message));

我忘了在.env中更改BROADCAST_DRIVERBROADCAST_DRIVER=推进器

最新更新