在SPA中授权广播频道
我的项目分为两个app:基于VUE的客户端app和基于laravel的服务器端rest API app。我已在config/app.php
文件中取消注释AppProvidersBroadcastServiceProvider::class,
。
默认的广播授权路由为/broadcasting/auth
。由于它应用了web
中间件,因此由于CSRF问题,它显示为419。因此,在BroadcastServiceProvider
中,我更改了以下内容:
Broadcast::routes();
至此:
Broadcast::routes(['middleware' => ['auth:api']]);
但现在的问题是,每当我访问我的客户端应用程序时,我在控制台中都会收到以下错误:
GEThttp://localhost:8000/v1/login405(不允许使用方法)
如何修复此问题?
我的客户端配置:
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 PusherPusher(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',
...
}
相关文章