Description
I would like to connect to a Zoom meeting from a Python web app and obtain an audio stream in real time.
I’m trying to connect to a Zoom meeting by calling the Meeting SDK for Windows dll function from a Python web app, but the SDKAuth function returns an Internal Error.
I thought there was something wrong with the JWT token being passed to the SDKAuth function, but if I enter the same JWT token in DEMOv2 that comes with the SDK, I can connect to the Zoom meeting correctly.
Does anyone know why the SDKAuth function returns an Internal Error and how to deal with it?
Also, is using the Zoom SDK the correct approach to get the audio of a Zoom meeting in real time from a Python web app?
Is there an approach to implement it using Zoom’s WebAPI?
I’m trying to get the audio stream with Client SDK for Windows from the Python Web App.
But the SKDAuth function of the Client SDK returns an Internal Error.
I made a typo.
It’s SDKAuth, not SKDAuth.
The return value of the SDKAuth function is 15.
In the Demo v2 C++ source, the return value 15 is defined as SDKERR_INTERNAL_ERROR.
@chunsiong.zoom
I can connect to a Zoom meeting from the Demo v2 app that came with the Client SDK, but I’m having trouble because I can’t connect to a Zoom meeting by calling the Client SDK from a web app developed in Python.