在 SPA 中授权广播频道
Authorizing broadcasting channel in an SPA
我的项目分为两个应用程序:基于 vue 的客户端应用程序和基于 laravel 的服务器端 rest api 应用程序。我在 config/app.php
文件中取消注释 App\Providers\BroadcastServiceProvider::class,
。
默认的广播授权路由是/broadcasting/auth
。由于它应用了 web
中间件,因此由于 CSRF 问题显示 419。所以在 BroadcastServiceProvider
我改变了这个:
Broadcast::routes();
对此:
Broadcast::routes(['middleware' => ['auth:api']]);
但现在的问题是每当我访问我的客户端应用程序时,我都会在控制台中收到以下错误:
GET http://localhost:8000/v1/login 405 (Method Not Allowed)
我该如何解决这个问题?
我的客户端配置:
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',
...
}
我的项目分为两个应用程序:基于 vue 的客户端应用程序和基于 laravel 的服务器端 rest api 应用程序。我在 config/app.php
文件中取消注释 App\Providers\BroadcastServiceProvider::class,
。
默认的广播授权路由是/broadcasting/auth
。由于它应用了 web
中间件,因此由于 CSRF 问题显示 419。所以在 BroadcastServiceProvider
我改变了这个:
Broadcast::routes();
对此:
Broadcast::routes(['middleware' => ['auth:api']]);
但现在的问题是每当我访问我的客户端应用程序时,我都会在控制台中收到以下错误:
GET http://localhost:8000/v1/login 405 (Method Not Allowed)
我该如何解决这个问题?
我的客户端配置:
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',
...
}