laravel-echo-server 404 尝试进行身份验证时
Posted
技术标签:
【中文标题】laravel-echo-server 404 尝试进行身份验证时【英文标题】:laravel-echo-server 404 when trying to authenticate 【发布时间】:2018-06-05 15:13:26 【问题描述】:我正在设置一个 laravel-echo-server,当我尝试对私有通道进行身份验证时,我收到错误:客户端无法通过身份验证,获得 HTTP 状态 404。
授权公共频道有效。
//channels.php
Broadcast::channel('private-test', function($user)
return true;
);
//验证私有频道的前端脚本
window.Echo.private('private-test')
.listen('TestMessage', (e) =>
app.updateChat(e);
);
//laravel-echo-server.json
"authHost": "basic.test",
"authEndpoint": "/broadcasting/auth",
"clients": [],
"database": "redis",
"databaseConfig":
"redis": ,
"sqlite":
"databasePath": "/database/laravel-echo-server.sqlite"
,
"devMode": false,
"host": null,
"port": "6001",
"protocol": "http",
"socketio": ,
"sslCertPath": "",
"sslKeyPath": "",
"sslCertChainPath": "",
"sslPassphrase": "",
"apiOriginAllow":
"allowCors": false,
"allowOrigin": "",
"allowMethods": "",
"allowHeaders": ""
//bootstrap.js
window._ = require('lodash');
/**
* We'll load jQuery and the Bootstrap jQuery plugin which provides support
* for javascript based Bootstrap features such as modals and tabs. This
* code may be modified to fit the specific needs of your application.
*/
try
window.$ = window.jQuery = require('jquery');
require('bootstrap-sass');
catch (e)
/**
* We'll load the axios HTTP library which allows us to easily issue requests
* to our Laravel back-end. This library automatically handles sending the
* CSRF token as a header based on the value of the "XSRF" token cookie.
*/
window.axios = require('axios');
window.axios.defaults.headers.common['X-CSRF-TOKEN'] = window.Laravel.csrfToken;
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
/**
* Next we will register the CSRF Token as a common header with Axios so that
* all outgoing HTTP requests automatically have it attached. This is just
* a simple convenience so we don't have to attach every token manually.
*/
let token = document.head.querySelector('meta[name="csrf-token"]');
if (token)
window.axios.defaults.headers.common['X-CSRF-TOKEN'] = token.content;
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
else
console.error('CSRF token not found: https://laravel.com/docs/csrf#csrf-x-csrf-token');
/**
* Echo exposes an expressive API for subscribing to channels and listening
* for events that are broadcast by Laravel. Echo and event broadcasting
* allows your team to easily build robust real-time web applications.
*/
import Echo from 'laravel-echo'
// window.Pusher = require('pusher-js');
// window.Echo = new Echo(
// broadcaster: 'pusher',
// key: 'your-pusher-key'
// );
window.Echo = new Echo(
broadcaster: 'socket.io',
host: window.location.hostname + ':6001'
);
简单地说,我的 laravel echo 是从 public/js 中的 app.js 加载的,bootstrap.js 中的所有库都被加载。AFAIK,加载正确的 javascript 或前端语法没有问题。
我可以添加公共频道并通过它们发送消息,但是我无法对私人频道进行身份验证。
有人有建议吗?
【问题讨论】:
【参考方案1】:经过最长时间(我一直在努力解决这个问题很久),我找到了我错过的东西。
在 config/app.php 中
App\Providers\BroadcastServiceProvider::class,
必须取消注释(显然)。
【讨论】:
以上是关于laravel-echo-server 404 尝试进行身份验证时的主要内容,如果未能解决你的问题,请参考以下文章
Laravel 事件广播没有被拾取 laravel-echo-server
Laravel-echo-server 无法使用 https 协议启动生产
使用 Laravel Echo、laravel-echo-server 和 socket.io 广播将不起作用
laravel-echo-server 用户未加入,未订阅套接字服务器
Socket.io 在带有 redis 和 Laravel-echo-server 的 Web 浏览器 chrome 中没有显示任何内容