Is it possible to use the API to create a way to automatically download meetings that have been uploaded to the Cloud?
Hi,
you can use /recording/get API which will return the download URL of the mp4 recordings. You can then download the recordings from your applications.
https://api.zoom.us/v1/recording/get
\<recording\_files\>
\<recording\_file\> \<id\>654234c0-ca6e-4dfd-a09d-54f85951658f\</id\> \<meeting\_id\>ucc69C82Q5mTNyCRWE29Aw==\</meeting\_id\> \<recording\_start\>2015-04-13T01:06:36Z\</recording\_start\> \<recording\_end\>2015-04-13T01:06:47Z\</recording\_end\> \<file\_type\>MP4\</file\_type\> \<file\_size\>438482\</file\_size\> \<play\_url\>https://brand.zoom.us/recording/play/HzMyuI23bqxlJLVJLrww3L9ZuFeZEvYtG0vQ6pHhp6Twr6GPjX4Qks\_CJak7jrU2\</play\_url\> \<download\_url\>https://brand.zoom.us/recording/download/HzMyuI23bqxlJLVJLrww3L9ZuFeZEvYtG0vQ6pHhp6Twr6GPjX4Qks\_CJak7jrU2\</download\_url\> \</recording\_file\>
\</recording\_files\>
Hi,
I am trying to download Zoom recording from CURL or Wget commands.
But it is failing
Curl E.g.,
curl -o xcurl.mp4
Wget E.g.,
wget -O xwget.mp4
Error:
_–2017-09-28 11:46:48–
Resolving api.zoom.us… 52.206.253.194, 52.44.200.30
Connecting to api.zoom.us|52.206.253.194|:443… connected.
HTTP request sent, awaiting response… 302 Found
_Location:
I tried the same with python API as well, but getting failed.
Kindly let me know how can I download using CURL or WGET (am i missing any paramters here ??)