我的项目分为两个应用程序:基于vue的客户端应用程序和基于laravel的服务器端rest api应用程序。我没有在App\Providers\BroadcastServiceProvider::class,
文件中注释过config/app.php
。
默认的广播授权路径为/broadcasting/auth
。由于已应用web
中间件,由于CSRF问题,它显示为419。因此,在BroadcastServiceProvider
中,我对此进行了更改:
Broadcast::routes();
对此:
Broadcast::routes(['middleware' => ['auth:api']]);
但是现在的问题是,每当我访问客户端应用程序时,控制台中都会出现以下错误:
获取http://localhost:8000/v1/login 405(不允许使用方法)
我该如何解决?
我的客户端配置:
window.Echo = new Echo({
authEndpoint: 'http://localhost:8000/broadcasting/auth',
broadcaster: 'pusher',
key: 'anyKey',
wsHost: window.location.hostname,
wsPort: 6001,
disableStats: true
});
window.Echo.private('test.1').listen('TestUpdated', (e) => {
/*eslint-disable no-console*/
console.log(e);
});
答案 0 :(得分:0)
这就是我最终在api.php
路由文件中所做的事情:
Route::post('/broadcast',function (Request $request){
$pusher = new Pusher\Pusher(env('PUSHER_APP_KEY'),env('PUSHER_APP_SECRET'), env('PUSHER_APP_ID'));
return $pusher->socket_auth($request->request->get('channel_name'),$request->request->get('socket_id'));
});
然后我将authEndpoint
更改为客户端应用中的路由:
window.Echo = new Echo({
authEndpoint: 'http://localhost:8000/broadcast',
...
}