Changed recordingReady endpoint HTTP method to POST, because bbb documentation set when recording for a meeting is ready, it will make a HTTP POST request to the given url. Check bbb documentation. https://docs.bigbluebutton.org/development/api/#recording-ready-callback-url.

pull/263/head
Orelvys García Guzmán 2023-11-09 09:42:51 -05:00
parent 583f759e37
commit baf28d07b3
1 changed files with 1 additions and 1 deletions

View File

@ -17,6 +17,6 @@ return [
['name' => 'join#index', 'url' => '/b/{token}/{moderatorToken}', 'verb' => 'GET', 'defaults' => ['moderatorToken' => '']],
['name' => 'restriction#user', 'url' => '/restrictions/user', 'verb' => 'GET'],
['name' => 'hook#meetingEnded', 'url' => '/hook/ended/{token}/{mac}', 'verb' => 'GET'],
['name' => 'hook#recordingReady', 'url' => '/hook/recording/{token}/{mac}', 'verb' => 'GET'],
['name' => 'hook#recordingReady', 'url' => '/hook/recording/{token}/{mac}', 'verb' => 'POST'],
]
];