Download URL is not working

Native file_get_contents($downloadURL) does not work. I think the problem is when doing stream ¿maybe Zoom disabled this option?

Using GuzzleHttp\Client it does work with stream = false

$client = new Client([
    // 'stream'          => true,
    'stream'          => false,
    'allow_redirects' => true,
    'cookies'         => true
]);

$response = $client->get($downloadURL);
$file = $response->getBody()->getContents();

To Zoom: ¿have you disabled streaming recordings?

2 Likes