I have zoom pro account which is needed for custom live streaming.
Steps followed:-
- Update live stream details for meeting using PATCH https://api.zoom.us/v2/meetings/{meeting_id}/livestream api
req payload:
{
‘stream_url’: ‘http://guru-10937bc9.localhost.run/live_stream/97263181491’,
‘stream_key’: ‘contact@gnani.ai’,
‘page_url’: ‘http://guru-10937bc9.localhost.run/live_stream_page/97263181491’
}
response: 204
http://guru-10937bc9.localhost.run/live_stream_page/97263181491 -> responds with 200 ok
http://guru-10937bc9.localhost.run/live_stream/97263181491 -> resonds with 200 ok
- Start live stream for meeting using PATCH https://api.zoom.us/v2/meetings/97263181491/livestream/status api
req payload:
{
“action”: “start”,
“settings”: {
“active_speaker_name”: False,
“display_name”: “inc”
}
}
response: 204
Expected Behaviour:-
Live stream should be started and live streaming should be sent to the mentioned urls in update live stream api
Actual Behaviour:-
At the top it displays LIVE preparing and after a long it displays a toast saying unable to live stream, you need to restart streaming
If I manually press on Stream on Custom Live Streaming Service zoom page opens and displays Invalid input parameters. (2) Error
Screenshots