socket.io作为具有laravel echo的广播者,出现了问题。
我尝试了什么:
php artisan cache:clear
php artisan config:clear
我可以看到用户在日志中进行连接:
0|Socket-Connection | [11:17:00 AM] - ********** joined channel: test-channel
0|Socket-Connection | [11:17:01 AM] - ********** authenticated for: private-user.1
0|Socket-Connection | [11:17:01 AM] - ********** joined channel: private-user.1
我的队列正在运行,并且正在正确记录所有事件。
我可以在redis控制台中完美地看到redis的事件和数据库通知。
但是没有广播任何事件,并且在laravel-echo-server控制台中没有看到它们。一切都在我的本地主机上运行,但是在生产环境中却没有,我不知所措。
这是我的laravel echo JS:
if (typeof io !== 'undefined') {
console.log(window.location.origin);
window.Echo = new Echo({
broadcaster: 'socket.io',
host: window.location.origin + ':6001',
auth: {
headers: {
Authorization: 'Bearer ' + bearerToken,
},
}
});
window.Echo.private('user.' + user_id).notification((notification) => {
console.log(notification);
});
}
在我的用户模型上,我已经定义了:
/**
* @return string
*/
public function receivesBroadcastNotificationsOn()
{
return 'user.' . $this->id;
}
在我的频道中,我有这个:
Broadcast::channel('user.{id}', function ($user, $id) {
return (int)$user->id === (int)$id;
});
这是我的回显服务器配置,所有路径均正确。我在本地主机上测试了相同的文件,并且一切正常:
var echo = require('laravel-echo-server/dist');
echo.run({
"appKey": "myappkey",
"authHost": "https://www.app.riskomed.com",
"authEndpoint": "/broadcasting/auth",
"database": "redis",
"clients": [
{
"appId": "myappid",
"key": "mykey"
}
],
"databaseConfig": {
"redis": {
"port": "6379",
"host": "myhost",
"password": "mysupersecretpassword"
},
"sqlite": {
"databasePath": "/database/laravel-echo-server.sqlite"
}
},
"devMode": true,
"host": "www.app.riskomed.com",
"port": "6001",
"protocol": "https",
"referrers": [],
"sslCertPath": "/path/to/certificate.pem",
"sslKeyPath": "/path/to/key",
"verifyAuthPath": true,
"verifyAuthServer": false
});
我的redis日志在发布数据库通知时显示此信息
1534840681.110359 [0 "IP ADDRESS HERE"] "PUBLISH" "private-user.2" "{\"event\":\"Illuminate\\\\Notifications\\\\Events\\\\BroadcastNotificationCreated\",\"data\":{\"title\":\"Ravim CONVULEX 50MG\\/ML staatust muudeti\",\"notification_type\":\"element-soft-delete\",\"message\":\"Ravimi CONVULEX 50MG\\/ML staatust muutis kasutaja Kalle Kulpson\",\"url\":\"https:\\/\\/www.app.riskomed.com\\/admin\\/brands\\/all\",\"id\":\"30c37d0d-c39b-41bf-93fc-afa0c78ca9db\",\"type\":\"App\\\\Notifications\\\\API\\\\Management\\\\Medical\\\\Brands\\\\BrandSoftDeleteNotification\",\"socket\":null},\"socket\":null}"
这是我的通知
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['mail', 'database', 'broadcast'];
}
答案 0 :(得分:1)
我看到您在生产服务器中使用“ https”协议,因此需要定义“ sslCertPath”和“ sslKeyPath”:
来自文档
使用SSL运行
答案 1 :(得分:1)
如果看到用户加入频道,则很可能设置正确。您只需要广播console.log(notification)
通话的通知即可正常工作,因为您是在用户频道上专门调用通知功能的。有关更多详细信息,请参见https://laravel.com/docs/5.6/broadcasting#notifications。
带有通知的广播
//Create a new notification with artisan, e.g. php artisan make:notification testNotification
class testNotification extends Notification {
...
public function via($notifiable)
{
return ['broadcast'];
}
...
public function toBroadcast($notifiable) {
return new BroadcastMessage([
'message' => 'TEST',
]);
}
}
然后,当您准备好广播消息时,只需通知用户:
$user->notify(new testNotification());
编辑:
此外,请确保您的用户模型具有Notifiable
特性:
class User extends Authenticatable
{
use Notifiable;
...
}