首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >laravel echo-server 404

laravel echo-server 404
EN

Stack Overflow用户
提问于 2017-12-23 14:47:24
回答 1查看 3.9K关注 0票数 2

我正在设置laravel-echo-server,当我尝试向私有通道进行身份验证时,收到错误消息: Client channel be authenticated,get HTTP status 404。

授权公共频道是可行的。

//channels.php

代码语言:javascript
运行
复制
Broadcast::channel('private-test', function($user) {
return true;
});

//鉴权到私有通道的前端脚本

代码语言:javascript
运行
复制
window.Echo.private('private-test')
.listen('TestMessage', (e) => {
    app.updateChat(e);
});

//laravel-echo-server.json

代码语言:javascript
运行
复制
{
"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

代码语言:javascript
运行
复制
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回显是从app.js /js中的公共加载的,bootstrap.js中的所有库都是加载的。AFAIK,在正确的javascript或前端语法中加载没有问题。

我可以添加公共通道并通过它们发送消息,但是我不能向私有通道进行身份验证。

有没有人有建议?

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2017-12-23 15:02:07

经过很长一段时间(我已经尝试解决这个问题很久了),我找到了我错过的东西。

在config/app.php

代码语言:javascript
运行
复制
App\Providers\BroadcastServiceProvider::class,

必须是未注释的(显然)。

票数 18
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/47950431

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档