You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I like to add a path via REVERB_SERVER_PATH
I added the path to both reverb.servers.reverb.path and broadcasting.connections.reverb.options.path
But pusher tries to send requests to a url without the prefix (path)
This is because Pusher doesn't take the REVERB_SERVER_PATH as the prefix for its settings#base_path
I created a PR for this pusher/pusher-http-php#399 but it seems the repo is not active as I saw a similar PR which was created a long time ago! pusher/pusher-http-php#388
So maybe the laravel team should fork pusher/pusher-http-php and edit it for the framework ??
This is very important as the request path also affects on Controller#verifySignature() method and causes HttpException (Authentication signature invalid.)
Steps To Reproduce
set REVERB_SERVER_PATH for both reverb.servers.reverb.path and broadcasting.connections.reverb.options.path
start reverb: php artisan reverb:start --debug
start queue: php artisan queue:listen
start tinker: php artisan tinker
send a test broadcast: \Illuminate\Support\Facades\Broadcast::on('test')->via('reverb')->with(['id' => 6])->send();
you can see error log that says can't send the post request (because Pusher ignored the REVERB_SERVER_PATH)
The text was updated successfully, but these errors were encountered:
Reverb Version
1.4.7
Laravel Version
12.2.0
PHP Version
8.4.5
Description
I like to add a path via
REVERB_SERVER_PATH
I added the
path
to bothreverb.servers.reverb.path
andbroadcasting.connections.reverb.options.path
But pusher tries to send requests to a url without the prefix (
path
)This is because Pusher doesn't take the
REVERB_SERVER_PATH
as the prefix for itssettings#base_path
I created a PR for this pusher/pusher-http-php#399 but it seems the repo is not active as I saw a similar PR which was created a long time ago! pusher/pusher-http-php#388
So maybe the laravel team should fork
pusher/pusher-http-php
and edit it for the framework ??This is very important as the request path also affects on
Controller#verifySignature()
method and causes HttpException (Authentication signature invalid.)Steps To Reproduce
REVERB_SERVER_PATH
for bothreverb.servers.reverb.path
andbroadcasting.connections.reverb.options.path
php artisan reverb:start --debug
php artisan queue:listen
php artisan tinker
\Illuminate\Support\Facades\Broadcast::on('test')->via('reverb')->with(['id' => 6])->send();
REVERB_SERVER_PATH
)The text was updated successfully, but these errors were encountered: