我的项目分为两个应用程序:基于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);
});
这是我最终在我的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',
...
}